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>
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.2</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>edu.internet2.middleware</groupId>
113 <artifactId>shibboleth-jce</artifactId>
114 <version>1.0.0</version>
115 <scope>runtime</scope>
118 <groupId>tomcat</groupId>
119 <artifactId>catalina</artifactId>
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-compiler-plugin</artifactId>
163 <groupId>org.apache.maven.plugins</groupId>
164 <artifactId>maven-assembly-plugin</artifactId>
167 <descriptor>src/main/assembly/bin.xml</descriptor>
168 <descriptor>src/main/assembly/src.xml</descriptor>
173 <id>make-assembly</id>
174 <phase>package</phase>
176 <goal>attached</goal>
182 <groupId>org.apache.maven.plugins</groupId>
183 <artifactId>maven-surefire-plugin</artifactId>
185 <argLine>-Xmx256m</argLine>
189 <groupId>org.apache.maven.plugins</groupId>
190 <artifactId>maven-jar-plugin</artifactId>
195 <Main-Class>edu.internet2.middleware.shibboleth.idp.Version</Main-Class>
199 <name>edu/internet2/middleware/shibboleth/idp/</name>
201 <Implementation-Title>${pom.artifactId}</Implementation-Title>
202 <Implementation-Version>${pom.version}</Implementation-Version>
203 <Implementation-Vendor>www.opensaml.org</Implementation-Vendor>
216 <groupId>org.apache.maven.plugins</groupId>
217 <artifactId>maven-javadoc-plugin</artifactId>
220 <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
223 <author>false</author>
224 <version>true</version>
225 <doctitle>${project.name} ${project.version} Java API.</doctitle>
226 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
227 <overview>src/main/java/overview.html</overview>
231 <groupId>org.apache.maven.plugins</groupId>
232 <artifactId>maven-jxr-plugin</artifactId>
234 <outputDirectory>${project.reporting.outputDirectory}/xref</outputDirectory>
235 <doctitle>${project.name} ${project.version} Code Cross-Reference</doctitle>
236 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
237 <javadocDir>${project.reporting.outputDirectory}/apidocs</javadocDir>
241 <groupId>org.apache.maven.plugins</groupId>
242 <artifactId>maven-checkstyle-plugin</artifactId>
244 <configLocation>checkstyle.xml</configLocation>
245 <outputDirectory>${project.reporting.outputDirectory}/style</outputDirectory>
246 <enableRSS>false</enableRSS>
250 <groupId>org.apache.maven.plugins</groupId>
251 <artifactId>maven-surefire-report-plugin</artifactId>
253 <outputDirectory>${project.reporting.outputDirectory}/unitTest</outputDirectory>
254 <xrefLocation>${project.reporting.outputDirectory}/xref</xrefLocation>
266 <artifactId>maven-compiler-plugin</artifactId>
269 <groupId>org.apache.maven.plugins</groupId>
270 <artifactId>maven-javadoc-plugin</artifactId>
273 <id>release-javadoc</id>
274 <phase>package</phase>
282 <groupId>org.apache.maven.plugins</groupId>
283 <artifactId>maven-jxr-plugin</artifactId>
287 <phase>package</phase>
295 <groupId>org.apache.maven.plugins</groupId>
296 <artifactId>maven-checkstyle-plugin</artifactId>
299 <id>release-checkstyle</id>
300 <phase>package</phase>
302 <goal>checkstyle</goal>
308 <groupId>org.apache.maven.plugins</groupId>
309 <artifactId>maven-surefire-report-plugin</artifactId>
312 <id>release-unitTest</id>
313 <phase>package</phase>
315 <goal>report-only</goal>
321 <artifactId>maven-assembly-plugin</artifactId>
324 <id>make-assembly</id>
325 <phase>package</phase>
327 <goal>attached</goal>
333 <groupId>org.apache.maven.plugins</groupId>
334 <artifactId>maven-gpg-plugin</artifactId>
337 <id>sign-artifacts</id>
338 <phase>verify</phase>
350 <!-- Project Metadata -->
351 <url>https://shibboleth.internet2.edu/</url>
353 <inceptionYear>2006</inceptionYear>
357 <name>Apache 2</name>
358 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
359 <distribution>repo</distribution>
364 <name>Internet2</name>
365 <url>http://www.internet2.edu/</url>
369 <system>JIRA</system>
370 <url>http://bugs.internet2.edu/</url>
375 <name>Shibboleth Announce</name>
376 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
377 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
378 <post>shibboleth-announce@internet2.edu</post>
379 <archive>https://mail.internet2.edu/wws/arc/shibboleth-announce</archive>
382 <name>Shibboleth Users</name>
383 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
384 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
385 <post>shibboleth-users@internet2.edu</post>
386 <archive>https://mail.internet2.edu/wws/arc/shibboleth-users</archive>
389 <name>Shibboleth Development</name>
390 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
391 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
392 <post>shibboleth-dev@internet2.edu</post>
393 <archive>https://mail.internet2.edu/wws/arc/shibboleth-dev</archive>
398 <connection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</connection>
399 <developerConnection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</developerConnection>
401 <url>http://svn.middleware.georgetown.edu/view/?root=java-idp</url>
407 <name>Scott Cantor</name>
408 <organization>The Ohio State University</organization>
409 <organizationUrl>http://www.ohio-state.edu/</organizationUrl>
411 <role>developer</role>
413 <timezone>-5</timezone>
417 <name>Nate Klingenstein</name>
418 <organization>Internet2</organization>
419 <organizationUrl>http://www.internet2.edu/</organizationUrl>
421 <role>documentation</role>
423 <timezone>-7</timezone>
427 <name>Chad La Joie</name>
428 <organization>SWITCH</organization>
429 <organizationUrl>http://www.switch.ch/</organizationUrl>
431 <role>developer</role>
432 <role>documentation</role>
434 <timezone>+1</timezone>
438 <name>Will Norris</name>
439 <organization>University of Southern California</organization>
440 <organizationUrl>http://www.usc.edu/</organizationUrl>
442 <role>developer</role>
444 <timezone>-8</timezone>
448 <name>Rod Widdowson</name>
449 <organization>University of Edinburgh</organization>
450 <organizationUrl>http://www.ed.ac.uk/</organizationUrl>
452 <role>developer</role>
454 <timezone>0</timezone>