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>
29 <!-- Compile dependencies -->
31 <groupId>edu.internet2.middleware</groupId>
32 <artifactId>shibboleth-common</artifactId>
33 <version>1.1.0</version>
36 <groupId>org.slf4j</groupId>
37 <artifactId>slf4j-api</artifactId>
38 <version>1.5.0</version>
41 <groupId>org.slf4j</groupId>
42 <artifactId>jcl104-over-slf4j</artifactId>
43 <version>1.5.0</version>
46 <groupId>org.slf4j</groupId>
47 <artifactId>log4j-over-slf4j</artifactId>
48 <version>1.5.0</version>
51 <groupId>ch.qos.logback</groupId>
52 <artifactId>logback-classic</artifactId>
53 <version>0.9.8</version>
56 <groupId>ch.qos.logback</groupId>
57 <artifactId>logback-core</artifactId>
58 <version>0.9.8</version>
61 <!-- Provided dependencies -->
63 <groupId>javax.servlet</groupId>
64 <artifactId>servlet-api</artifactId>
65 <version>2.4</version>
66 <scope>provided</scope>
69 <!-- Runtime dependencies -->
71 <groupId>org.apache.xerces</groupId>
72 <artifactId>xml-apis</artifactId>
73 <version>2.9.1</version>
74 <scope>runtime</scope>
77 <groupId>org.apache.xerces</groupId>
78 <artifactId>xercesImpl</artifactId>
79 <version>2.9.1</version>
80 <scope>runtime</scope>
83 <groupId>org.apache.xerces</groupId>
84 <artifactId>resolver</artifactId>
85 <version>2.9.1</version>
86 <scope>runtime</scope>
89 <groupId>org.apache.xerces</groupId>
90 <artifactId>serializer</artifactId>
91 <version>2.9.1</version>
92 <scope>runtime</scope>
95 <groupId>org.apache.xalan</groupId>
96 <artifactId>xalan</artifactId>
97 <version>2.7.1</version>
98 <scope>runtime</scope>
101 <groupId>org.apache.ant</groupId>
102 <artifactId>ant</artifactId>
103 <version>1.7.0</version>
104 <scope>runtime</scope>
107 <groupId>org.apache.ant</groupId>
108 <artifactId>ant-nodeps</artifactId>
109 <version>1.7.0</version>
110 <scope>runtime</scope>
113 <groupId>ant-contrib</groupId>
114 <artifactId>ant-contrib</artifactId>
115 <version>1.0b2</version>
116 <scope>runtime</scope>
119 <groupId>ant</groupId>
120 <artifactId>ant</artifactId>
125 <groupId>edu.internet2.middleware</groupId>
126 <artifactId>ant-extensions</artifactId>
127 <version>13Apr2008</version>
128 <scope>runtime</scope>
131 <!-- Test dependencies -->
133 <groupId>junit</groupId>
134 <artifactId>junit</artifactId>
135 <version>3.8.1</version>
139 <groupId>xmlunit</groupId>
140 <artifactId>xmlunit</artifactId>
141 <version>1.0</version>
145 <groupId>org.springframework</groupId>
146 <artifactId>spring-mock</artifactId>
147 <version>2.0.8</version>
151 <groupId>commons-logging</groupId>
152 <artifactId>commons-logging</artifactId>
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>
180 <id>make-assembly</id>
181 <phase>package</phase>
183 <goal>attached</goal>
194 <groupId>org.apache.maven.plugins</groupId>
195 <artifactId>maven-javadoc-plugin</artifactId>
198 <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
201 <author>false</author>
202 <version>true</version>
203 <doctitle>${project.name} ${project.version} Java API.</doctitle>
204 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
205 <overview>src/main/java/overview.html</overview>
209 <groupId>org.apache.maven.plugins</groupId>
210 <artifactId>maven-jxr-plugin</artifactId>
212 <outputDirectory>${project.reporting.outputDirectory}/xref</outputDirectory>
213 <doctitle>${project.name} ${project.version} Code Cross-Reference</doctitle>
214 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
215 <javadocDir>${project.reporting.outputDirectory}/apidocs</javadocDir>
219 <groupId>org.apache.maven.plugins</groupId>
220 <artifactId>maven-checkstyle-plugin</artifactId>
222 <configLocation>checkstyle.xml</configLocation>
223 <outputDirectory>${project.reporting.outputDirectory}/style</outputDirectory>
224 <enableRSS>false</enableRSS>
228 <groupId>org.apache.maven.plugins</groupId>
229 <artifactId>maven-surefire-report-plugin</artifactId>
231 <outputDirectory>${project.reporting.outputDirectory}/unitTest</outputDirectory>
232 <xrefLocation>${project.reporting.outputDirectory}/xref</xrefLocation>
244 <artifactId>maven-compiler-plugin</artifactId>
247 <groupId>org.apache.maven.plugins</groupId>
248 <artifactId>maven-javadoc-plugin</artifactId>
251 <id>release-javadoc</id>
252 <phase>package</phase>
260 <groupId>org.apache.maven.plugins</groupId>
261 <artifactId>maven-jxr-plugin</artifactId>
265 <phase>package</phase>
273 <groupId>org.apache.maven.plugins</groupId>
274 <artifactId>maven-checkstyle-plugin</artifactId>
277 <id>release-checkstyle</id>
278 <phase>package</phase>
280 <goal>checkstyle</goal>
286 <groupId>org.apache.maven.plugins</groupId>
287 <artifactId>maven-surefire-report-plugin</artifactId>
290 <id>release-unitTest</id>
291 <phase>package</phase>
293 <goal>report-only</goal>
299 <artifactId>maven-assembly-plugin</artifactId>
302 <id>make-assembly</id>
303 <phase>package</phase>
305 <goal>attached</goal>
311 <groupId>org.apache.maven.plugins</groupId>
312 <artifactId>maven-gpg-plugin</artifactId>
315 <id>sign-artifacts</id>
316 <phase>verify</phase>
328 <!-- Project Metadata -->
329 <url>https://shibboleth.internet2.edu/</url>
331 <inceptionYear>2006</inceptionYear>
335 <name>Apache 2</name>
336 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
337 <distribution>repo</distribution>
342 <name>Internet2</name>
343 <url>http://www.internet2.edu/</url>
347 <system>JIRA</system>
348 <url>http://bugs.internet2.edu/</url>
353 <name>Shibboleth Announce</name>
354 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
355 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
356 <post>shibboleth-announce@internet2.edu</post>
357 <archive>https://mail.internet2.edu/wws/arc/shibboleth-announce</archive>
360 <name>Shibboleth Users</name>
361 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
362 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
363 <post>shibboleth-users@internet2.edu</post>
364 <archive>https://mail.internet2.edu/wws/arc/shibboleth-users</archive>
367 <name>Shibboleth Development</name>
368 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
369 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
370 <post>shibboleth-dev@internet2.edu</post>
371 <archive>https://mail.internet2.edu/wws/arc/shibboleth-dev</archive>
376 <connection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</connection>
377 <developerConnection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</developerConnection>
379 <url>http://svn.middleware.georgetown.edu/view/?root=java-idp</url>
385 <name>Scott Cantor</name>
386 <organization>The Ohio State University</organization>
387 <organizationUrl>http://www.ohio-state.edu/</organizationUrl>
389 <role>developer</role>
391 <timezone>-5</timezone>
395 <name>Nate Klingenstein</name>
396 <organization>Internet2</organization>
397 <organizationUrl>http://www.internet2.edu/</organizationUrl>
399 <role>documentation</role>
401 <timezone>-7</timezone>
405 <name>Chad La Joie</name>
406 <organization>SWITCH</organization>
407 <organizationUrl>http://www.switch.ch/</organizationUrl>
409 <role>developer</role>
410 <role>documentation</role>
412 <timezone>+1</timezone>
416 <name>Will Norris</name>
417 <organization>University of Southern California</organization>
418 <organizationUrl>http://www.usc.edu/</organizationUrl>
420 <role>developer</role>
422 <timezone>-8</timezone>
426 <name>Rod Widdowson</name>
427 <organization>University of Edinburgh</organization>
428 <organizationUrl>http://www.ed.ac.uk/</organizationUrl>
430 <role>developer</role>
432 <timezone>0</timezone>