1 <?xml version="1.0" encoding="UTF-8"?>
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>edu.internet2.middleware</groupId>
5 <artifactId>shibboleth-identityprovider</artifactId>
6 <version>2.1.0</version>
7 <!-- We bundle as a jar here, the installer creates the WAR -->
8 <packaging>jar</packaging>
10 <name>Shibboleth Identity Provider</name>
12 The Shibboleth Identity Provider is used by an organization to securely assert information, via SAML, about
13 their users. This information is then read and acted upon by Service Providers.
18 <id>shibboleth.internet2.edu</id>
19 <name>Internet2</name>
20 <layout>default</layout>
21 <url>http://shibboleth.internet2.edu/downloads/maven2</url>
23 <enabled>false</enabled>
28 <distributionManagement>
30 <id>ssh-repository</id>
31 <url>scpexe://www.internet2.edu/home/htdocs/shibboleth.internet2.edu/downloads/maven2</url>
33 </distributionManagement>
36 <!-- Compile dependencies -->
38 <groupId>edu.internet2.middleware</groupId>
39 <artifactId>shibboleth-common</artifactId>
40 <version>1.1.0</version>
43 <!-- Provided dependencies -->
45 <groupId>javax.servlet</groupId>
46 <artifactId>servlet-api</artifactId>
47 <version>2.4</version>
48 <scope>provided</scope>
51 <!-- Runtime dependencies -->
53 <groupId>org.apache.xerces</groupId>
54 <artifactId>xml-apis</artifactId>
55 <version>2.9.1</version>
56 <scope>runtime</scope>
59 <groupId>org.apache.xerces</groupId>
60 <artifactId>xercesImpl</artifactId>
61 <version>2.9.1</version>
62 <scope>runtime</scope>
65 <groupId>org.apache.xerces</groupId>
66 <artifactId>resolver</artifactId>
67 <version>2.9.1</version>
68 <scope>runtime</scope>
71 <groupId>org.apache.xerces</groupId>
72 <artifactId>serializer</artifactId>
73 <version>2.9.1</version>
74 <scope>runtime</scope>
77 <groupId>org.apache.xalan</groupId>
78 <artifactId>xalan</artifactId>
79 <version>2.7.1</version>
80 <scope>runtime</scope>
83 <groupId>org.apache.ant</groupId>
84 <artifactId>ant</artifactId>
85 <version>1.7.0</version>
86 <scope>runtime</scope>
89 <groupId>org.apache.ant</groupId>
90 <artifactId>ant-nodeps</artifactId>
91 <version>1.7.0</version>
92 <scope>runtime</scope>
95 <groupId>ant-contrib</groupId>
96 <artifactId>ant-contrib</artifactId>
97 <version>1.0b2</version>
98 <scope>runtime</scope>
101 <groupId>ant</groupId>
102 <artifactId>ant</artifactId>
107 <groupId>edu.internet2.middleware</groupId>
108 <artifactId>ant-extensions</artifactId>
109 <version>13Apr2008</version>
110 <scope>runtime</scope>
113 <groupId>edu.internet2.middleware</groupId>
114 <artifactId>shibboleth-jce</artifactId>
115 <version>1.0.0</version>
116 <scope>runtime</scope>
119 <groupId>tomcat</groupId>
120 <artifactId>catalina</artifactId>
125 <!-- Test dependencies -->
127 <groupId>junit</groupId>
128 <artifactId>junit</artifactId>
129 <version>3.8.1</version>
133 <groupId>xmlunit</groupId>
134 <artifactId>xmlunit</artifactId>
135 <version>1.0</version>
139 <groupId>org.springframework</groupId>
140 <artifactId>spring-mock</artifactId>
141 <version>2.0.8</version>
145 <groupId>commons-logging</groupId>
146 <artifactId>commons-logging</artifactId>
155 <groupId>org.apache.maven.plugins</groupId>
156 <artifactId>maven-compiler-plugin</artifactId>
164 <groupId>org.apache.maven.plugins</groupId>
165 <artifactId>maven-assembly-plugin</artifactId>
168 <descriptor>src/main/assembly/bin.xml</descriptor>
169 <descriptor>src/main/assembly/src.xml</descriptor>
174 <id>make-assembly</id>
175 <phase>package</phase>
177 <goal>attached</goal>
183 <groupId>org.apache.maven.plugins</groupId>
184 <artifactId>maven-surefire-plugin</artifactId>
186 <argLine>-Xmx256m</argLine>
190 <groupId>org.apache.maven.plugins</groupId>
191 <artifactId>maven-jar-plugin</artifactId>
196 <Main-Class>edu.internet2.middleware.shibboleth.idp.Version</Main-Class>
200 <name>edu/internet2/middleware/shibboleth/idp/</name>
202 <Implementation-Title>${pom.artifactId}</Implementation-Title>
203 <Implementation-Version>${pom.version}</Implementation-Version>
204 <Implementation-Vendor>www.opensaml.org</Implementation-Vendor>
217 <groupId>org.apache.maven.plugins</groupId>
218 <artifactId>maven-javadoc-plugin</artifactId>
221 <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
224 <author>false</author>
225 <version>true</version>
226 <doctitle>${project.name} ${project.version} Java API.</doctitle>
227 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
228 <overview>src/main/java/overview.html</overview>
232 <groupId>org.apache.maven.plugins</groupId>
233 <artifactId>maven-jxr-plugin</artifactId>
235 <outputDirectory>${project.reporting.outputDirectory}/xref</outputDirectory>
236 <doctitle>${project.name} ${project.version} Code Cross-Reference</doctitle>
237 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
238 <javadocDir>${project.reporting.outputDirectory}/apidocs</javadocDir>
242 <groupId>org.apache.maven.plugins</groupId>
243 <artifactId>maven-checkstyle-plugin</artifactId>
245 <configLocation>checkstyle.xml</configLocation>
246 <outputDirectory>${project.reporting.outputDirectory}/style</outputDirectory>
247 <enableRSS>false</enableRSS>
251 <groupId>org.apache.maven.plugins</groupId>
252 <artifactId>maven-surefire-report-plugin</artifactId>
254 <outputDirectory>${project.reporting.outputDirectory}/unitTest</outputDirectory>
255 <xrefLocation>${project.reporting.outputDirectory}/xref</xrefLocation>
267 <artifactId>maven-compiler-plugin</artifactId>
270 <groupId>org.apache.maven.plugins</groupId>
271 <artifactId>maven-javadoc-plugin</artifactId>
274 <id>release-javadoc</id>
275 <phase>package</phase>
283 <groupId>org.apache.maven.plugins</groupId>
284 <artifactId>maven-jxr-plugin</artifactId>
288 <phase>package</phase>
296 <groupId>org.apache.maven.plugins</groupId>
297 <artifactId>maven-checkstyle-plugin</artifactId>
300 <id>release-checkstyle</id>
301 <phase>package</phase>
303 <goal>checkstyle</goal>
309 <groupId>org.apache.maven.plugins</groupId>
310 <artifactId>maven-surefire-report-plugin</artifactId>
313 <id>release-unitTest</id>
314 <phase>package</phase>
316 <goal>report-only</goal>
322 <artifactId>maven-assembly-plugin</artifactId>
325 <id>make-assembly</id>
326 <phase>package</phase>
328 <goal>attached</goal>
334 <groupId>org.apache.maven.plugins</groupId>
335 <artifactId>maven-gpg-plugin</artifactId>
338 <id>sign-artifacts</id>
339 <phase>verify</phase>
351 <!-- Project Metadata -->
352 <url>https://shibboleth.internet2.edu/</url>
354 <inceptionYear>2006</inceptionYear>
358 <name>Apache 2</name>
359 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
360 <distribution>repo</distribution>
365 <name>Internet2</name>
366 <url>http://www.internet2.edu/</url>
370 <system>JIRA</system>
371 <url>http://bugs.internet2.edu/</url>
376 <name>Shibboleth Announce</name>
377 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
378 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
379 <post>shibboleth-announce@internet2.edu</post>
380 <archive>https://mail.internet2.edu/wws/arc/shibboleth-announce</archive>
383 <name>Shibboleth Users</name>
384 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
385 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
386 <post>shibboleth-users@internet2.edu</post>
387 <archive>https://mail.internet2.edu/wws/arc/shibboleth-users</archive>
390 <name>Shibboleth Development</name>
391 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
392 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
393 <post>shibboleth-dev@internet2.edu</post>
394 <archive>https://mail.internet2.edu/wws/arc/shibboleth-dev</archive>
399 <connection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</connection>
400 <developerConnection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</developerConnection>
402 <url>http://svn.middleware.georgetown.edu/view/?root=java-idp</url>
408 <name>Scott Cantor</name>
409 <organization>The Ohio State University</organization>
410 <organizationUrl>http://www.ohio-state.edu/</organizationUrl>
412 <role>developer</role>
414 <timezone>-5</timezone>
418 <name>Nate Klingenstein</name>
419 <organization>Internet2</organization>
420 <organizationUrl>http://www.internet2.edu/</organizationUrl>
422 <role>documentation</role>
424 <timezone>-7</timezone>
428 <name>Chad La Joie</name>
429 <organization>SWITCH</organization>
430 <organizationUrl>http://www.switch.ch/</organizationUrl>
432 <role>developer</role>
433 <role>documentation</role>
435 <timezone>+1</timezone>
439 <name>Will Norris</name>
440 <organization>University of Southern California</organization>
441 <organizationUrl>http://www.usc.edu/</organizationUrl>
443 <role>developer</role>
445 <timezone>-8</timezone>
449 <name>Rod Widdowson</name>
450 <organization>University of Edinburgh</organization>
451 <organizationUrl>http://www.ed.ac.uk/</organizationUrl>
453 <role>developer</role>
455 <timezone>0</timezone>