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 <!-- Test dependencies -->
115 <groupId>junit</groupId>
116 <artifactId>junit</artifactId>
117 <version>3.8.1</version>
121 <groupId>xmlunit</groupId>
122 <artifactId>xmlunit</artifactId>
123 <version>1.0</version>
127 <groupId>org.springframework</groupId>
128 <artifactId>spring-mock</artifactId>
129 <version>2.0.8</version>
133 <groupId>commons-logging</groupId>
134 <artifactId>commons-logging</artifactId>
143 <groupId>org.apache.maven.plugins</groupId>
144 <artifactId>maven-compiler-plugin</artifactId>
152 <groupId>org.apache.maven.plugins</groupId>
153 <artifactId>maven-assembly-plugin</artifactId>
156 <descriptor>src/main/assembly/bin.xml</descriptor>
157 <descriptor>src/main/assembly/src.xml</descriptor>
162 <id>make-assembly</id>
163 <phase>package</phase>
165 <goal>attached</goal>
171 <groupId>org.apache.maven.plugins</groupId>
172 <artifactId>maven-jar-plugin</artifactId>
177 <Main-Class>edu.internet2.middleware.shibboleth.idp.Version</Main-Class>
181 <name>edu/internet2/middleware/shibboleth/idp/</name>
183 <Implementation-Title>${pom.artifactId}</Implementation-Title>
184 <Implementation-Version>${pom.version}</Implementation-Version>
185 <Implementation-Vendor>www.opensaml.org</Implementation-Vendor>
198 <groupId>org.apache.maven.plugins</groupId>
199 <artifactId>maven-javadoc-plugin</artifactId>
202 <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
205 <author>false</author>
206 <version>true</version>
207 <doctitle>${project.name} ${project.version} Java API.</doctitle>
208 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
209 <overview>src/main/java/overview.html</overview>
213 <groupId>org.apache.maven.plugins</groupId>
214 <artifactId>maven-jxr-plugin</artifactId>
216 <outputDirectory>${project.reporting.outputDirectory}/xref</outputDirectory>
217 <doctitle>${project.name} ${project.version} Code Cross-Reference</doctitle>
218 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
219 <javadocDir>${project.reporting.outputDirectory}/apidocs</javadocDir>
223 <groupId>org.apache.maven.plugins</groupId>
224 <artifactId>maven-checkstyle-plugin</artifactId>
226 <configLocation>checkstyle.xml</configLocation>
227 <outputDirectory>${project.reporting.outputDirectory}/style</outputDirectory>
228 <enableRSS>false</enableRSS>
232 <groupId>org.apache.maven.plugins</groupId>
233 <artifactId>maven-surefire-report-plugin</artifactId>
235 <outputDirectory>${project.reporting.outputDirectory}/unitTest</outputDirectory>
236 <xrefLocation>${project.reporting.outputDirectory}/xref</xrefLocation>
248 <artifactId>maven-compiler-plugin</artifactId>
251 <groupId>org.apache.maven.plugins</groupId>
252 <artifactId>maven-javadoc-plugin</artifactId>
255 <id>release-javadoc</id>
256 <phase>package</phase>
264 <groupId>org.apache.maven.plugins</groupId>
265 <artifactId>maven-jxr-plugin</artifactId>
269 <phase>package</phase>
277 <groupId>org.apache.maven.plugins</groupId>
278 <artifactId>maven-checkstyle-plugin</artifactId>
281 <id>release-checkstyle</id>
282 <phase>package</phase>
284 <goal>checkstyle</goal>
290 <groupId>org.apache.maven.plugins</groupId>
291 <artifactId>maven-surefire-report-plugin</artifactId>
294 <id>release-unitTest</id>
295 <phase>package</phase>
297 <goal>report-only</goal>
303 <artifactId>maven-assembly-plugin</artifactId>
306 <id>make-assembly</id>
307 <phase>package</phase>
309 <goal>attached</goal>
315 <groupId>org.apache.maven.plugins</groupId>
316 <artifactId>maven-gpg-plugin</artifactId>
319 <id>sign-artifacts</id>
320 <phase>verify</phase>
332 <!-- Project Metadata -->
333 <url>https://shibboleth.internet2.edu/</url>
335 <inceptionYear>2006</inceptionYear>
339 <name>Apache 2</name>
340 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
341 <distribution>repo</distribution>
346 <name>Internet2</name>
347 <url>http://www.internet2.edu/</url>
351 <system>JIRA</system>
352 <url>http://bugs.internet2.edu/</url>
357 <name>Shibboleth Announce</name>
358 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
359 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
360 <post>shibboleth-announce@internet2.edu</post>
361 <archive>https://mail.internet2.edu/wws/arc/shibboleth-announce</archive>
364 <name>Shibboleth Users</name>
365 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
366 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
367 <post>shibboleth-users@internet2.edu</post>
368 <archive>https://mail.internet2.edu/wws/arc/shibboleth-users</archive>
371 <name>Shibboleth Development</name>
372 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
373 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
374 <post>shibboleth-dev@internet2.edu</post>
375 <archive>https://mail.internet2.edu/wws/arc/shibboleth-dev</archive>
380 <connection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</connection>
381 <developerConnection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</developerConnection>
383 <url>http://svn.middleware.georgetown.edu/view/?root=java-idp</url>
389 <name>Scott Cantor</name>
390 <organization>The Ohio State University</organization>
391 <organizationUrl>http://www.ohio-state.edu/</organizationUrl>
393 <role>developer</role>
395 <timezone>-5</timezone>
399 <name>Nate Klingenstein</name>
400 <organization>Internet2</organization>
401 <organizationUrl>http://www.internet2.edu/</organizationUrl>
403 <role>documentation</role>
405 <timezone>-7</timezone>
409 <name>Chad La Joie</name>
410 <organization>SWITCH</organization>
411 <organizationUrl>http://www.switch.ch/</organizationUrl>
413 <role>developer</role>
414 <role>documentation</role>
416 <timezone>+1</timezone>
420 <name>Will Norris</name>
421 <organization>University of Southern California</organization>
422 <organizationUrl>http://www.usc.edu/</organizationUrl>
424 <role>developer</role>
426 <timezone>-8</timezone>
430 <name>Rod Widdowson</name>
431 <organization>University of Edinburgh</organization>
432 <organizationUrl>http://www.ed.ac.uk/</organizationUrl>
434 <role>developer</role>
436 <timezone>0</timezone>