1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
6 <groupId>edu.internet2.middleware</groupId>
7 <artifactId>shibboleth-identityprovider</artifactId>
8 <version>2.2.1-SNAPSHOT</version>
10 <!-- We bundle as a jar here, the installer creates the WAR -->
11 <packaging>jar</packaging>
13 <name>Shibboleth Identity Provider</name>
15 The Shibboleth Identity Provider is used by an organization to securely assert information, via SAML, about
16 their users. This information is then read and acted upon by Service Providers.
20 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21 <xerces.groupId>org.apache.xerces</xerces.groupId>
22 <xerces.version>2.10.0</xerces.version>
27 <id>shibboleth.internet2.edu</id>
28 <name>Internet2</name>
29 <layout>default</layout>
30 <url>http://shibboleth.internet2.edu/downloads/maven2</url>
32 <enabled>false</enabled>
37 <distributionManagement>
40 <url>${dist.release.url}</url>
42 </distributionManagement>
45 <!-- Compile dependencies -->
47 <groupId>edu.internet2.middleware</groupId>
48 <artifactId>shibboleth-common</artifactId>
49 <version>1.2.1</version>
52 <!-- Provided dependencies -->
54 <groupId>javax.servlet</groupId>
55 <artifactId>servlet-api</artifactId>
56 <version>2.4</version>
59 <!-- Runtime dependencies -->
61 <groupId>${xerces.groupId}</groupId>
62 <artifactId>xml-apis</artifactId>
63 <version>${xerces.version}</version>
64 <scope>runtime</scope>
67 <groupId>${xerces.groupId}</groupId>
68 <artifactId>xercesImpl</artifactId>
69 <version>${xerces.version}</version>
70 <scope>runtime</scope>
73 <groupId>${xerces.groupId}</groupId>
74 <artifactId>resolver</artifactId>
75 <version>${xerces.version}</version>
76 <scope>runtime</scope>
79 <groupId>${xerces.groupId}</groupId>
80 <artifactId>serializer</artifactId>
81 <version>${xerces.version}</version>
82 <scope>runtime</scope>
85 <groupId>org.apache.xalan</groupId>
86 <artifactId>xalan</artifactId>
87 <version>2.7.1</version>
88 <scope>runtime</scope>
91 <groupId>org.apache.ant</groupId>
92 <artifactId>ant-nodeps</artifactId>
93 <version>1.7.1</version>
94 <scope>runtime</scope>
97 <groupId>ant-contrib</groupId>
98 <artifactId>ant-contrib</artifactId>
99 <version>1.0b2</version>
100 <scope>runtime</scope>
103 <groupId>ant</groupId>
104 <artifactId>ant</artifactId>
109 <groupId>edu.internet2.middleware</groupId>
110 <artifactId>ant-extensions</artifactId>
111 <version>13Apr2008</version>
112 <scope>runtime</scope>
115 <groupId>org.bouncycastle</groupId>
116 <artifactId>bcprov-jdk14</artifactId>
121 <groupId>edu.internet2.middleware</groupId>
122 <artifactId>shibboleth-jce</artifactId>
123 <version>1.1.0</version>
124 <scope>runtime</scope>
127 <!-- Test dependencies -->
129 <groupId>junit</groupId>
130 <artifactId>junit</artifactId>
131 <version>3.8.1</version>
135 <groupId>xmlunit</groupId>
136 <artifactId>xmlunit</artifactId>
137 <version>1.0</version>
141 <groupId>org.springframework</groupId>
142 <artifactId>spring-test</artifactId>
143 <version>2.5.6.SEC02</version>
147 <groupId>commons-logging</groupId>
148 <artifactId>commons-logging</artifactId>
157 <groupId>org.apache.maven.plugins</groupId>
158 <artifactId>maven-resources-plugin</artifactId>
160 <encoding>UTF-8</encoding>
164 <groupId>org.apache.maven.plugins</groupId>
165 <artifactId>maven-compiler-plugin</artifactId>
173 <groupId>org.apache.maven.plugins</groupId>
174 <artifactId>maven-assembly-plugin</artifactId>
177 <descriptor>src/main/assembly/bin.xml</descriptor>
179 <tarLongFileMode>gnu</tarLongFileMode>
183 <id>make-assembly</id>
184 <phase>package</phase>
186 <goal>attached</goal>
192 <groupId>org.apache.maven.plugins</groupId>
193 <artifactId>maven-surefire-plugin</artifactId>
195 <argLine>-Xmx256m</argLine>
199 <groupId>org.apache.maven.plugins</groupId>
200 <artifactId>maven-jar-plugin</artifactId>
205 <Main-Class>edu.internet2.middleware.shibboleth.idp.Version</Main-Class>
209 <name>edu/internet2/middleware/shibboleth/idp/</name>
211 <Implementation-Title>${pom.artifactId}</Implementation-Title>
212 <Implementation-Version>${pom.version}</Implementation-Version>
213 <Implementation-Vendor>shibboleth.internet2.edu</Implementation-Vendor>
226 <groupId>org.apache.maven.plugins</groupId>
227 <artifactId>maven-javadoc-plugin</artifactId>
230 <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
231 <link>http://joda-time.sourceforge.net/apidocs/</link>
232 <link>http://static.springsource.org/spring/docs/2.0.x/api/</link>
235 <author>false</author>
236 <version>true</version>
237 <doctitle>${project.name} ${project.version} Java API.</doctitle>
238 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
239 <overview>src/main/java/overview.html</overview>
243 <groupId>org.apache.maven.plugins</groupId>
244 <artifactId>maven-jxr-plugin</artifactId>
246 <outputDirectory>${project.reporting.outputDirectory}/xref</outputDirectory>
247 <doctitle>${project.name} ${project.version} Code Cross-Reference</doctitle>
248 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
249 <javadocDir>${project.reporting.outputDirectory}/apidocs</javadocDir>
253 <groupId>org.apache.maven.plugins</groupId>
254 <artifactId>maven-surefire-report-plugin</artifactId>
256 <outputDirectory>${project.reporting.outputDirectory}/unitTest</outputDirectory>
257 <xrefLocation>${project.reporting.outputDirectory}/xref</xrefLocation>
269 <artifactId>maven-compiler-plugin</artifactId>
272 <groupId>org.apache.maven.plugins</groupId>
273 <artifactId>maven-javadoc-plugin</artifactId>
276 <id>release-javadoc</id>
277 <phase>package</phase>
285 <groupId>org.apache.maven.plugins</groupId>
286 <artifactId>maven-jxr-plugin</artifactId>
290 <phase>package</phase>
298 <groupId>org.apache.maven.plugins</groupId>
299 <artifactId>maven-surefire-report-plugin</artifactId>
302 <id>release-unitTest</id>
303 <phase>package</phase>
305 <goal>report-only</goal>
311 <artifactId>maven-assembly-plugin</artifactId>
314 <id>make-assembly</id>
315 <phase>package</phase>
317 <goal>attached</goal>
323 <groupId>org.apache.maven.plugins</groupId>
324 <artifactId>maven-gpg-plugin</artifactId>
327 <id>sign-artifacts</id>
328 <phase>verify</phase>
340 <!-- Project Metadata -->
341 <url>http://shibboleth.internet2.edu/</url>
343 <inceptionYear>2006</inceptionYear>
347 <name>Apache 2</name>
348 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
349 <distribution>repo</distribution>
354 <name>Internet2</name>
355 <url>http://www.internet2.edu/</url>
359 <system>JIRA</system>
360 <url>http://bugs.internet2.edu/</url>
365 <name>Shibboleth Announce</name>
366 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
367 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
368 <post>shibboleth-announce@internet2.edu</post>
369 <archive>https://mail.internet2.edu/wws/arc/shibboleth-announce</archive>
372 <name>Shibboleth Users</name>
373 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
374 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
375 <post>shibboleth-users@internet2.edu</post>
376 <archive>https://mail.internet2.edu/wws/arc/shibboleth-users</archive>
379 <name>Shibboleth Development</name>
380 <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
381 <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
382 <post>shibboleth-dev@internet2.edu</post>
383 <archive>https://mail.internet2.edu/wws/arc/shibboleth-dev</archive>
388 <connection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</connection>
389 <developerConnection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</developerConnection>
391 <url>http://svn.middleware.georgetown.edu/view/?root=java-idp</url>
397 <name>Scott Cantor</name>
398 <organization>The Ohio State University</organization>
399 <organizationUrl>http://www.ohio-state.edu/</organizationUrl>
401 <role>developer</role>
403 <timezone>-5</timezone>
407 <name>Nate Klingenstein</name>
408 <organization>Internet2</organization>
409 <organizationUrl>http://www.internet2.edu/</organizationUrl>
411 <role>documentation</role>
413 <timezone>-7</timezone>
417 <name>Chad La Joie</name>
418 <organization>SWITCH</organization>
419 <organizationUrl>http://www.switch.ch/</organizationUrl>
421 <role>developer</role>
422 <role>documentation</role>
424 <timezone>+1</timezone>
428 <name>Will Norris</name>
429 <organization>University of Southern California</organization>
430 <organizationUrl>http://www.usc.edu/</organizationUrl>
432 <role>developer</role>
434 <timezone>-8</timezone>
438 <name>Rod Widdowson</name>
439 <organization>University of Edinburgh</organization>
440 <organizationUrl>http://www.ed.ac.uk/</organizationUrl>
442 <role>developer</role>
444 <timezone>0</timezone>