1 <?xml version="1.0" encoding="UTF-8"?>
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>edu.internet2.shibboleth</groupId>
5 <artifactId>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.shibboleth</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 <!-- Test dependencies -->
127 <groupId>junit</groupId>
128 <artifactId>junit</artifactId>
129 <version>3.8.1</version>
133 <groupId>xmlunit</groupId>
134 <artifactId>xmlunit</artifactId>
135 <version>1.0</version>
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>
176 <groupId>org.apache.maven.plugins</groupId>
177 <artifactId>maven-javadoc-plugin</artifactId>
180 <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
183 <author>false</author>
184 <version>true</version>
185 <doctitle>${project.name} ${project.version} Java API.</doctitle>
186 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
187 <overview>src/main/java/overview.html</overview>
191 <groupId>org.apache.maven.plugins</groupId>
192 <artifactId>maven-jxr-plugin</artifactId>
194 <outputDirectory>${project.reporting.outputDirectory}/xref</outputDirectory>
195 <doctitle>${project.name} ${project.version} Code Cross-Reference</doctitle>
196 <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
197 <javadocDir>${project.reporting.outputDirectory}/apidocs</javadocDir>
201 <groupId>org.apache.maven.plugins</groupId>
202 <artifactId>maven-checkstyle-plugin</artifactId>
204 <configLocation>checkstyle.xml</configLocation>
205 <outputDirectory>${project.reporting.outputDirectory}/style</outputDirectory>
206 <enableRSS>false</enableRSS>
210 <groupId>org.apache.maven.plugins</groupId>
211 <artifactId>maven-surefire-report-plugin</artifactId>
213 <outputDirectory>${project.reporting.outputDirectory}/unitTest</outputDirectory>
214 <xrefLocation>${project.reporting.outputDirectory}/xref</xrefLocation>
226 <artifactId>maven-compiler-plugin</artifactId>
229 <groupId>org.apache.maven.plugins</groupId>
230 <artifactId>maven-javadoc-plugin</artifactId>
233 <id>release-javadoc</id>
234 <phase>package</phase>
242 <groupId>org.apache.maven.plugins</groupId>
243 <artifactId>maven-jxr-plugin</artifactId>
247 <phase>package</phase>
255 <groupId>org.apache.maven.plugins</groupId>
256 <artifactId>maven-checkstyle-plugin</artifactId>
259 <id>release-checkstyle</id>
260 <phase>package</phase>
262 <goal>checkstyle</goal>
268 <groupId>org.apache.maven.plugins</groupId>
269 <artifactId>maven-surefire-report-plugin</artifactId>
272 <id>release-unitTest</id>
273 <phase>package</phase>
275 <goal>report-only</goal>
281 <artifactId>maven-assembly-plugin</artifactId>
284 <id>make-assembly</id>
285 <phase>package</phase>
287 <goal>attached</goal>
293 <groupId>org.apache.maven.plugins</groupId>
294 <artifactId>maven-gpg-plugin</artifactId>
297 <id>sign-artifacts</id>
298 <phase>verify</phase>
310 <!-- Project Metadata -->
311 <url>https://opensaml.org/</url>
313 <inceptionYear>2006</inceptionYear>
317 <name>Apache 2</name>
318 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
319 <distribution>repo</distribution>
324 <name>Internet2</name>
325 <url>http://www.internet2.edu/</url>
329 <system>JIRA</system>
330 <url>http://bugs.internet2.edu/</url>
335 <name>OpenSAML Users</name>
336 <subscribe>https://spaces.internet2.edu/display/OpenSAML/MailingList</subscribe>
337 <unsubscribe>https://spaces.internet2.edu/display/OpenSAML/MailingList</unsubscribe>
338 <post>mace-opensaml-users@internet2.edu</post>
339 <archive>https://mail.internet2.edu/wws/arc/mace-opensaml-users</archive>
341 <otherArchive>http://groups.google.com/group/opensaml-users</otherArchive>
347 <connection>scm:svn:https://svn.middleware.georgetown.edu/java-xmltooling/</connection>
348 <developerConnection>scm:svn:https://svn.middleware.georgetown.edu/java-xmltooling/</developerConnection>
350 <url>http://svn.middleware.georgetown.edu/view/?root=java-xmltooling</url>
356 <name>Scott Cantor</name>
357 <organization>The Ohio State University</organization>
358 <organizationUrl>http://www.ohio-state.edu/</organizationUrl>
360 <role>developer</role>
362 <timezone>-5</timezone>
366 <name>Nate Klingenstein</name>
367 <organization>Internet2</organization>
368 <organizationUrl>http://www.internet2.edu/</organizationUrl>
370 <role>documentation</role>
372 <timezone>-7</timezone>
376 <name>Chad La Joie</name>
377 <organization>SWITCH</organization>
378 <organizationUrl>http://www.switch.ch/</organizationUrl>
380 <role>developer</role>
381 <role>documentation</role>
383 <timezone>+1</timezone>
387 <name>Will Norris</name>
388 <organization>University of Southern California</organization>
389 <organizationUrl>http://www.usc.edu/</organizationUrl>
391 <role>developer</role>
393 <timezone>-8</timezone>
397 <name>Rod Widdowson</name>
398 <organization>University of Edinburgh</organization>
399 <organizationUrl>http://www.ed.ac.uk/</organizationUrl>
401 <role>developer</role>
403 <timezone>0</timezone>