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.3</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>
31 <url>${dist.release.url}</url>
33 </distributionManagement>
36 <!-- Compile dependencies -->
38 <groupId>edu.internet2.middleware</groupId>
39 <artifactId>shibboleth-common</artifactId>
40 <version>1.1.3</version>
43 <groupId>javax.servlet</groupId>
44 <artifactId>servlet-api</artifactId>
45 <version>2.4</version>
48 <!-- Provided dependencies -->
50 <!-- Runtime dependencies -->
52 <groupId>org.apache.xerces</groupId>
53 <artifactId>xml-apis</artifactId>
54 <version>2.9.1</version>
55 <scope>runtime</scope>
58 <groupId>org.apache.xerces</groupId>
59 <artifactId>xercesImpl</artifactId>
60 <version>2.9.1</version>
61 <scope>runtime</scope>
64 <groupId>org.apache.xerces</groupId>
65 <artifactId>resolver</artifactId>
66 <version>2.9.1</version>
67 <scope>runtime</scope>
70 <groupId>org.apache.xerces</groupId>
71 <artifactId>serializer</artifactId>
72 <version>2.9.1</version>
73 <scope>runtime</scope>
76 <groupId>org.apache.xalan</groupId>
77 <artifactId>xalan</artifactId>
78 <version>2.7.1</version>
79 <scope>runtime</scope>
82 <groupId>org.apache.ant</groupId>
83 <artifactId>ant</artifactId>
84 <version>1.7.0</version>
85 <scope>runtime</scope>
88 <groupId>org.apache.ant</groupId>
89 <artifactId>ant-nodeps</artifactId>
90 <version>1.7.0</version>
91 <scope>runtime</scope>
94 <groupId>ant-contrib</groupId>
95 <artifactId>ant-contrib</artifactId>
96 <version>1.0b2</version>
97 <scope>runtime</scope>
100 <groupId>ant</groupId>
101 <artifactId>ant</artifactId>
106 <groupId>edu.internet2.middleware</groupId>
107 <artifactId>ant-extensions</artifactId>
108 <version>13Apr2008</version>
109 <scope>runtime</scope>
112 <groupId>org.bouncycastle</groupId>
113 <artifactId>bcprov-jdk14</artifactId>
118 <groupId>edu.internet2.middleware</groupId>
119 <artifactId>shibboleth-jce</artifactId>
120 <version>1.1.0</version>
121 <scope>runtime</scope>
124 <!-- Test dependencies -->
126 <groupId>junit</groupId>
127 <artifactId>junit</artifactId>
128 <version>3.8.1</version>
132 <groupId>xmlunit</groupId>
133 <artifactId>xmlunit</artifactId>
134 <version>1.0</version>
138 <groupId>org.springframework</groupId>
139 <artifactId>spring-mock</artifactId>
140 <version>2.0.8</version>
144 <groupId>commons-logging</groupId>
145 <artifactId>commons-logging</artifactId>
154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-resources-plugin</artifactId>
157 <encoding>UTF-8</encoding>
161 <groupId>org.apache.maven.plugins</groupId>
162 <artifactId>maven-compiler-plugin</artifactId>
170 <groupId>org.apache.maven.plugins</groupId>
171 <artifactId>maven-assembly-plugin</artifactId>
174 <descriptor>src/main/assembly/bin.xml</descriptor>
175 <descriptor>src/main/assembly/src.xml</descriptor>
177 <tarLongFileMode>gnu</tarLongFileMode>
181 <id>make-assembly</id>
182 <phase>package</phase>
184 <goal>attached</goal>
190 <groupId>org.apache.maven.plugins</groupId>
191 <artifactId>maven-surefire-plugin</artifactId>
193 <argLine>-Xmx256m</argLine>
197 <groupId>org.apache.maven.plugins</groupId>
198 <artifactId>maven-jar-plugin</artifactId>
203 <Main-Class>edu.internet2.middleware.shibboleth.idp.Version</Main-Class>
207 <name>edu/internet2/middleware/shibboleth/idp/</name>
209 <Implementation-Title>${pom.artifactId}</Implementation-Title>
210 <Implementation-Version>${pom.version}</Implementation-Version>
211 <Implementation-Vendor>www.opensaml.org</Implementation-Vendor>
224 <groupId>org.apache.maven.plugins</groupId>
225 <artifactId>maven-javadoc-plugin</artifactId>
228 <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
229 <link>http://joda-time.sourceforge.net/apidocs/</link>
230 <link>http://static.springsource.org/spring/docs/2.0.x/api/</link>
233 <author>false</author>
234 <version>true</version>
235 <doctitle>${project.name} ${project.version} Java API.</doctitle>
236 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
237 <overview>src/main/java/overview.html</overview>
241 <groupId>org.apache.maven.plugins</groupId>
242 <artifactId>maven-jxr-plugin</artifactId>
244 <outputDirectory>${project.reporting.outputDirectory}/xref</outputDirectory>
245 <doctitle>${project.name} ${project.version} Code Cross-Reference</doctitle>
246 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
247 <javadocDir>${project.reporting.outputDirectory}/apidocs</javadocDir>
251 <groupId>org.apache.maven.plugins</groupId>
252 <artifactId>maven-checkstyle-plugin</artifactId>
254 <configLocation>checkstyle.xml</configLocation>
255 <outputDirectory>${project.reporting.outputDirectory}/style</outputDirectory>
256 <enableRSS>false</enableRSS>
260 <groupId>org.apache.maven.plugins</groupId>
261 <artifactId>maven-surefire-report-plugin</artifactId>
263 <outputDirectory>${project.reporting.outputDirectory}/unitTest</outputDirectory>
264 <xrefLocation>${project.reporting.outputDirectory}/xref</xrefLocation>
276 <artifactId>maven-compiler-plugin</artifactId>
279 <groupId>org.apache.maven.plugins</groupId>
280 <artifactId>maven-javadoc-plugin</artifactId>
283 <id>release-javadoc</id>
284 <phase>package</phase>
292 <groupId>org.apache.maven.plugins</groupId>
293 <artifactId>maven-jxr-plugin</artifactId>
297 <phase>package</phase>
305 <groupId>org.apache.maven.plugins</groupId>
306 <artifactId>maven-checkstyle-plugin</artifactId>
309 <id>release-checkstyle</id>
310 <phase>package</phase>
312 <goal>checkstyle</goal>
318 <groupId>org.apache.maven.plugins</groupId>
319 <artifactId>maven-surefire-report-plugin</artifactId>
322 <id>release-unitTest</id>
323 <phase>package</phase>
325 <goal>report-only</goal>
331 <artifactId>maven-assembly-plugin</artifactId>
334 <id>make-assembly</id>
335 <phase>package</phase>
337 <goal>attached</goal>
343 <groupId>org.apache.maven.plugins</groupId>
344 <artifactId>maven-gpg-plugin</artifactId>
347 <id>sign-artifacts</id>
348 <phase>verify</phase>
360 <!-- Project Metadata -->
361 <url>https://shibboleth.internet2.edu/</url>
363 <inceptionYear>2006</inceptionYear>
367 <name>Apache 2</name>
368 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
369 <distribution>repo</distribution>
374 <name>Internet2</name>
375 <url>http://www.internet2.edu/</url>
379 <system>JIRA</system>
380 <url>http://bugs.internet2.edu/</url>
385 <name>Shibboleth Announce</name>
386 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
387 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
388 <post>shibboleth-announce@internet2.edu</post>
389 <archive>https://mail.internet2.edu/wws/arc/shibboleth-announce</archive>
392 <name>Shibboleth Users</name>
393 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
394 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
395 <post>shibboleth-users@internet2.edu</post>
396 <archive>https://mail.internet2.edu/wws/arc/shibboleth-users</archive>
399 <name>Shibboleth Development</name>
400 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
401 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
402 <post>shibboleth-dev@internet2.edu</post>
403 <archive>https://mail.internet2.edu/wws/arc/shibboleth-dev</archive>
408 <connection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</connection>
409 <developerConnection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</developerConnection>
411 <url>http://svn.middleware.georgetown.edu/view/?root=java-idp</url>
417 <name>Scott Cantor</name>
418 <organization>The Ohio State University</organization>
419 <organizationUrl>http://www.ohio-state.edu/</organizationUrl>
421 <role>developer</role>
423 <timezone>-5</timezone>
427 <name>Nate Klingenstein</name>
428 <organization>Internet2</organization>
429 <organizationUrl>http://www.internet2.edu/</organizationUrl>
431 <role>documentation</role>
433 <timezone>-7</timezone>
437 <name>Chad La Joie</name>
438 <organization>SWITCH</organization>
439 <organizationUrl>http://www.switch.ch/</organizationUrl>
441 <role>developer</role>
442 <role>documentation</role>
444 <timezone>+1</timezone>
448 <name>Will Norris</name>
449 <organization>University of Southern California</organization>
450 <organizationUrl>http://www.usc.edu/</organizationUrl>
452 <role>developer</role>
454 <timezone>-8</timezone>
458 <name>Rod Widdowson</name>
459 <organization>University of Edinburgh</organization>
460 <organizationUrl>http://www.ed.ac.uk/</organizationUrl>
462 <role>developer</role>
464 <timezone>0</timezone>