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 <groupId>org.slf4j</groupId>
44 <artifactId>slf4j-api</artifactId>
45 <version>1.5.0</version>
48 <groupId>org.slf4j</groupId>
49 <artifactId>jcl104-over-slf4j</artifactId>
50 <version>1.5.0</version>
53 <groupId>org.slf4j</groupId>
54 <artifactId>log4j-over-slf4j</artifactId>
55 <version>1.5.0</version>
58 <groupId>ch.qos.logback</groupId>
59 <artifactId>logback-classic</artifactId>
60 <version>0.9.8</version>
63 <groupId>ch.qos.logback</groupId>
64 <artifactId>logback-core</artifactId>
65 <version>0.9.8</version>
68 <!-- Provided dependencies -->
70 <groupId>javax.servlet</groupId>
71 <artifactId>servlet-api</artifactId>
72 <version>2.4</version>
73 <scope>provided</scope>
76 <!-- Runtime dependencies -->
78 <groupId>org.apache.xerces</groupId>
79 <artifactId>xml-apis</artifactId>
80 <version>2.9.1</version>
81 <scope>runtime</scope>
84 <groupId>org.apache.xerces</groupId>
85 <artifactId>xercesImpl</artifactId>
86 <version>2.9.1</version>
87 <scope>runtime</scope>
90 <groupId>org.apache.xerces</groupId>
91 <artifactId>resolver</artifactId>
92 <version>2.9.1</version>
93 <scope>runtime</scope>
96 <groupId>org.apache.xerces</groupId>
97 <artifactId>serializer</artifactId>
98 <version>2.9.1</version>
99 <scope>runtime</scope>
102 <groupId>org.apache.xalan</groupId>
103 <artifactId>xalan</artifactId>
104 <version>2.7.1</version>
105 <scope>runtime</scope>
108 <groupId>org.apache.ant</groupId>
109 <artifactId>ant</artifactId>
110 <version>1.7.0</version>
111 <scope>runtime</scope>
114 <groupId>org.apache.ant</groupId>
115 <artifactId>ant-nodeps</artifactId>
116 <version>1.7.0</version>
117 <scope>runtime</scope>
120 <groupId>ant-contrib</groupId>
121 <artifactId>ant-contrib</artifactId>
122 <version>1.0b2</version>
123 <scope>runtime</scope>
126 <groupId>ant</groupId>
127 <artifactId>ant</artifactId>
132 <groupId>edu.internet2.middleware</groupId>
133 <artifactId>ant-extensions</artifactId>
134 <version>13Apr2008</version>
135 <scope>runtime</scope>
138 <!-- Test dependencies -->
140 <groupId>junit</groupId>
141 <artifactId>junit</artifactId>
142 <version>3.8.1</version>
146 <groupId>xmlunit</groupId>
147 <artifactId>xmlunit</artifactId>
148 <version>1.0</version>
152 <groupId>org.springframework</groupId>
153 <artifactId>spring-mock</artifactId>
154 <version>2.0.8</version>
158 <groupId>commons-logging</groupId>
159 <artifactId>commons-logging</artifactId>
168 <groupId>org.apache.maven.plugins</groupId>
169 <artifactId>maven-compiler-plugin</artifactId>
177 <groupId>org.apache.maven.plugins</groupId>
178 <artifactId>maven-assembly-plugin</artifactId>
181 <descriptor>src/main/assembly/bin.xml</descriptor>
182 <descriptor>src/main/assembly/src.xml</descriptor>
187 <id>make-assembly</id>
188 <phase>package</phase>
190 <goal>attached</goal>
201 <groupId>org.apache.maven.plugins</groupId>
202 <artifactId>maven-javadoc-plugin</artifactId>
205 <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
208 <author>false</author>
209 <version>true</version>
210 <doctitle>${project.name} ${project.version} Java API.</doctitle>
211 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
212 <overview>src/main/java/overview.html</overview>
216 <groupId>org.apache.maven.plugins</groupId>
217 <artifactId>maven-jxr-plugin</artifactId>
219 <outputDirectory>${project.reporting.outputDirectory}/xref</outputDirectory>
220 <doctitle>${project.name} ${project.version} Code Cross-Reference</doctitle>
221 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
222 <javadocDir>${project.reporting.outputDirectory}/apidocs</javadocDir>
226 <groupId>org.apache.maven.plugins</groupId>
227 <artifactId>maven-checkstyle-plugin</artifactId>
229 <configLocation>checkstyle.xml</configLocation>
230 <outputDirectory>${project.reporting.outputDirectory}/style</outputDirectory>
231 <enableRSS>false</enableRSS>
235 <groupId>org.apache.maven.plugins</groupId>
236 <artifactId>maven-surefire-report-plugin</artifactId>
238 <outputDirectory>${project.reporting.outputDirectory}/unitTest</outputDirectory>
239 <xrefLocation>${project.reporting.outputDirectory}/xref</xrefLocation>
251 <artifactId>maven-compiler-plugin</artifactId>
254 <groupId>org.apache.maven.plugins</groupId>
255 <artifactId>maven-javadoc-plugin</artifactId>
258 <id>release-javadoc</id>
259 <phase>package</phase>
267 <groupId>org.apache.maven.plugins</groupId>
268 <artifactId>maven-jxr-plugin</artifactId>
272 <phase>package</phase>
280 <groupId>org.apache.maven.plugins</groupId>
281 <artifactId>maven-checkstyle-plugin</artifactId>
284 <id>release-checkstyle</id>
285 <phase>package</phase>
287 <goal>checkstyle</goal>
293 <groupId>org.apache.maven.plugins</groupId>
294 <artifactId>maven-surefire-report-plugin</artifactId>
297 <id>release-unitTest</id>
298 <phase>package</phase>
300 <goal>report-only</goal>
306 <artifactId>maven-assembly-plugin</artifactId>
309 <id>make-assembly</id>
310 <phase>package</phase>
312 <goal>attached</goal>
318 <groupId>org.apache.maven.plugins</groupId>
319 <artifactId>maven-gpg-plugin</artifactId>
322 <id>sign-artifacts</id>
323 <phase>verify</phase>
335 <!-- Project Metadata -->
336 <url>https://shibboleth.internet2.edu/</url>
338 <inceptionYear>2006</inceptionYear>
342 <name>Apache 2</name>
343 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
344 <distribution>repo</distribution>
349 <name>Internet2</name>
350 <url>http://www.internet2.edu/</url>
354 <system>JIRA</system>
355 <url>http://bugs.internet2.edu/</url>
360 <name>Shibboleth Announce</name>
361 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
362 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
363 <post>shibboleth-announce@internet2.edu</post>
364 <archive>https://mail.internet2.edu/wws/arc/shibboleth-announce</archive>
367 <name>Shibboleth Users</name>
368 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
369 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
370 <post>shibboleth-users@internet2.edu</post>
371 <archive>https://mail.internet2.edu/wws/arc/shibboleth-users</archive>
374 <name>Shibboleth Development</name>
375 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
376 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
377 <post>shibboleth-dev@internet2.edu</post>
378 <archive>https://mail.internet2.edu/wws/arc/shibboleth-dev</archive>
383 <connection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</connection>
384 <developerConnection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</developerConnection>
386 <url>http://svn.middleware.georgetown.edu/view/?root=java-idp</url>
392 <name>Scott Cantor</name>
393 <organization>The Ohio State University</organization>
394 <organizationUrl>http://www.ohio-state.edu/</organizationUrl>
396 <role>developer</role>
398 <timezone>-5</timezone>
402 <name>Nate Klingenstein</name>
403 <organization>Internet2</organization>
404 <organizationUrl>http://www.internet2.edu/</organizationUrl>
406 <role>documentation</role>
408 <timezone>-7</timezone>
412 <name>Chad La Joie</name>
413 <organization>SWITCH</organization>
414 <organizationUrl>http://www.switch.ch/</organizationUrl>
416 <role>developer</role>
417 <role>documentation</role>
419 <timezone>+1</timezone>
423 <name>Will Norris</name>
424 <organization>University of Southern California</organization>
425 <organizationUrl>http://www.usc.edu/</organizationUrl>
427 <role>developer</role>
429 <timezone>-8</timezone>
433 <name>Rod Widdowson</name>
434 <organization>University of Edinburgh</organization>
435 <organizationUrl>http://www.ed.ac.uk/</organizationUrl>
437 <role>developer</role>
439 <timezone>0</timezone>