Fix typo in method signature - SIDP-233
[java-idp.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project>
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>
9
10     <name>Shibboleth Identity Provider</name>
11     <description>
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.
14     </description>
15     
16     <repositories>
17         <repository>
18             <id>shibboleth.internet2.edu</id>
19             <name>Internet2</name>
20             <layout>default</layout>
21             <url>http://shibboleth.internet2.edu/downloads/maven2</url>
22             <snapshots>
23                 <enabled>false</enabled>
24             </snapshots>
25         </repository>
26     </repositories>
27     
28     <distributionManagement>
29         <repository>
30             <id>ssh-repository</id>
31             <url>scpexe://www.internet2.edu/home/htdocs/shibboleth.internet2.edu/downloads/maven2</url>
32         </repository>
33     </distributionManagement>
34
35     <dependencies>
36         <!-- Compile dependencies -->
37         <dependency>
38             <groupId>edu.internet2.middleware</groupId>
39             <artifactId>shibboleth-common</artifactId>
40             <version>1.1.0</version>
41         </dependency>
42         
43         <!-- Provided dependencies -->
44         <dependency>
45             <groupId>javax.servlet</groupId>
46             <artifactId>servlet-api</artifactId>
47             <version>2.4</version>
48             <scope>provided</scope>
49         </dependency>
50                 
51         <!-- Runtime dependencies -->
52         <dependency>
53             <groupId>org.apache.xerces</groupId>
54             <artifactId>xml-apis</artifactId>
55             <version>2.9.1</version>
56             <scope>runtime</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.apache.xerces</groupId>
60             <artifactId>xercesImpl</artifactId>
61             <version>2.9.1</version>
62             <scope>runtime</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.apache.xerces</groupId>
66             <artifactId>resolver</artifactId>
67             <version>2.9.1</version>
68             <scope>runtime</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.apache.xerces</groupId>
72             <artifactId>serializer</artifactId>
73             <version>2.9.1</version>
74             <scope>runtime</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.apache.xalan</groupId>
78             <artifactId>xalan</artifactId>
79             <version>2.7.1</version>
80             <scope>runtime</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.apache.ant</groupId>
84             <artifactId>ant</artifactId>
85             <version>1.7.0</version>
86             <scope>runtime</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.apache.ant</groupId>
90             <artifactId>ant-nodeps</artifactId>
91             <version>1.7.0</version>
92             <scope>runtime</scope>
93         </dependency>
94         <dependency>
95             <groupId>ant-contrib</groupId>
96             <artifactId>ant-contrib</artifactId>
97             <version>1.0b2</version>
98             <scope>runtime</scope>
99             <exclusions>
100                 <exclusion>
101                     <groupId>ant</groupId>
102                     <artifactId>ant</artifactId>
103                 </exclusion>
104             </exclusions>
105         </dependency>
106         <dependency>
107             <groupId>edu.internet2.middleware</groupId>
108             <artifactId>ant-extensions</artifactId>
109             <version>13Apr2008</version>
110             <scope>runtime</scope>
111         </dependency>
112         <dependency>
113             <groupId>edu.internet2.middleware</groupId>
114             <artifactId>shibboleth-jce</artifactId>
115             <version>1.0.0</version>
116             <scope>runtime</scope>
117             <exclusions>
118                 <exclusion>
119                     <groupId>tomcat</groupId>
120                     <artifactId>catalina</artifactId>
121                 </exclusion>
122             </exclusions>
123         </dependency>
124         
125         <!-- Test dependencies -->
126         <dependency>
127             <groupId>junit</groupId>
128             <artifactId>junit</artifactId>
129             <version>3.8.1</version>
130             <scope>test</scope>
131         </dependency>
132         <dependency>
133             <groupId>xmlunit</groupId>
134             <artifactId>xmlunit</artifactId>
135             <version>1.0</version>
136             <scope>test</scope>
137         </dependency>
138         <dependency>
139             <groupId>org.springframework</groupId>
140             <artifactId>spring-mock</artifactId>
141             <version>2.0.8</version>
142             <scope>test</scope>
143             <exclusions>
144                 <exclusion>
145                     <groupId>commons-logging</groupId>
146                     <artifactId>commons-logging</artifactId>
147                 </exclusion>
148             </exclusions>
149         </dependency>
150     </dependencies>
151     
152     <build>
153         <plugins>
154             <plugin>
155                 <groupId>org.apache.maven.plugins</groupId>
156                 <artifactId>maven-compiler-plugin</artifactId>
157                 <configuration>
158                     <source>1.5</source>
159                     <target>1.5</target>
160                     <debug>true</debug>
161                 </configuration>
162             </plugin>
163             <plugin>
164                 <groupId>org.apache.maven.plugins</groupId>
165                 <artifactId>maven-assembly-plugin</artifactId>
166                 <configuration>
167                     <descriptors>
168                         <descriptor>src/main/assembly/bin.xml</descriptor>
169                         <descriptor>src/main/assembly/src.xml</descriptor>
170                     </descriptors>
171                 </configuration>
172                 <executions>
173                     <execution>
174                         <id>make-assembly</id>
175                         <phase>package</phase>
176                         <goals>
177                             <goal>attached</goal>
178                         </goals>
179                     </execution>
180                 </executions>
181             </plugin>
182             <plugin>
183                 <groupId>org.apache.maven.plugins</groupId>
184                 <artifactId>maven-surefire-plugin</artifactId>
185                 <configuration>
186                   <argLine>-Xmx256m</argLine>
187                 </configuration>
188             </plugin>
189             <plugin>
190                 <groupId>org.apache.maven.plugins</groupId>
191                 <artifactId>maven-jar-plugin</artifactId>
192                 <configuration>
193                     <archive>
194                         <index>true</index>
195                         <manifestEntries>
196                             <Main-Class>edu.internet2.middleware.shibboleth.idp.Version</Main-Class>
197                         </manifestEntries>
198                         <manifestSections>
199                             <manifestSection>
200                                 <name>edu/internet2/middleware/shibboleth/idp/</name>
201                                 <manifestEntries>
202                                     <Implementation-Title>${pom.artifactId}</Implementation-Title>
203                                     <Implementation-Version>${pom.version}</Implementation-Version>
204                                     <Implementation-Vendor>www.opensaml.org</Implementation-Vendor>
205                                 </manifestEntries>
206                             </manifestSection>
207                         </manifestSections>
208                     </archive>
209                 </configuration>
210             </plugin>
211         </plugins>
212     </build>
213
214     <reporting>
215         <plugins>
216             <plugin>
217                 <groupId>org.apache.maven.plugins</groupId>
218                 <artifactId>maven-javadoc-plugin</artifactId>
219                 <configuration>
220                     <links>
221                         <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
222                     </links>
223                     <quiet>true</quiet>
224                     <author>false</author>
225                     <version>true</version>
226                     <doctitle>${project.name} ${project.version} Java API.</doctitle>
227                     <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
228                     <overview>src/main/java/overview.html</overview>
229                 </configuration>
230             </plugin>
231             <plugin>
232                 <groupId>org.apache.maven.plugins</groupId>
233                 <artifactId>maven-jxr-plugin</artifactId>
234                 <configuration>
235                     <outputDirectory>${project.reporting.outputDirectory}/xref</outputDirectory>
236                     <doctitle>${project.name} ${project.version} Code Cross-Reference</doctitle>
237                     <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
238                     <javadocDir>${project.reporting.outputDirectory}/apidocs</javadocDir>                    
239                 </configuration>
240             </plugin>
241             <plugin>
242                 <groupId>org.apache.maven.plugins</groupId>
243                 <artifactId>maven-checkstyle-plugin</artifactId>
244                 <configuration>
245                     <configLocation>checkstyle.xml</configLocation>
246                     <outputDirectory>${project.reporting.outputDirectory}/style</outputDirectory>
247                     <enableRSS>false</enableRSS>
248                 </configuration>
249             </plugin>
250             <plugin>
251                 <groupId>org.apache.maven.plugins</groupId>
252                 <artifactId>maven-surefire-report-plugin</artifactId>
253                 <configuration>
254                     <outputDirectory>${project.reporting.outputDirectory}/unitTest</outputDirectory>
255                     <xrefLocation>${project.reporting.outputDirectory}/xref</xrefLocation>
256                 </configuration>
257             </plugin>
258         </plugins>
259     </reporting>
260     
261     <profiles>
262         <profile>
263             <id>release</id>
264             <build>
265                 <plugins>
266                     <plugin>
267                         <artifactId>maven-compiler-plugin</artifactId>
268                     </plugin>
269                     <plugin>
270                         <groupId>org.apache.maven.plugins</groupId>
271                         <artifactId>maven-javadoc-plugin</artifactId>
272                         <executions>
273                             <execution>
274                                 <id>release-javadoc</id>
275                                 <phase>package</phase>
276                                 <goals>
277                                     <goal>javadoc</goal>
278                                 </goals>
279                             </execution>
280                         </executions>
281                     </plugin>
282                     <plugin>
283                         <groupId>org.apache.maven.plugins</groupId>
284                         <artifactId>maven-jxr-plugin</artifactId>
285                         <executions>
286                             <execution>
287                                 <id>release-jxr</id>
288                                 <phase>package</phase>
289                                 <goals>
290                                     <goal>jxr</goal>
291                                 </goals>
292                             </execution>
293                         </executions>
294                     </plugin>
295                     <plugin>
296                         <groupId>org.apache.maven.plugins</groupId>
297                         <artifactId>maven-checkstyle-plugin</artifactId>
298                         <executions>
299                             <execution>
300                                 <id>release-checkstyle</id>
301                                 <phase>package</phase>
302                                 <goals>
303                                     <goal>checkstyle</goal>
304                                 </goals>
305                             </execution>
306                         </executions>
307                     </plugin>
308                     <plugin>
309                         <groupId>org.apache.maven.plugins</groupId>
310                         <artifactId>maven-surefire-report-plugin</artifactId>
311                         <executions>
312                             <execution>
313                                 <id>release-unitTest</id>
314                                 <phase>package</phase>
315                                 <goals>
316                                     <goal>report-only</goal>
317                                 </goals>
318                             </execution>
319                         </executions>
320                     </plugin>
321                     <plugin>
322                         <artifactId>maven-assembly-plugin</artifactId>
323                         <executions>
324                             <execution>
325                                 <id>make-assembly</id>
326                                 <phase>package</phase>
327                                 <goals>
328                                     <goal>attached</goal>
329                                 </goals>
330                             </execution>
331                         </executions>
332                     </plugin>
333                     <plugin>
334                         <groupId>org.apache.maven.plugins</groupId>
335                         <artifactId>maven-gpg-plugin</artifactId>
336                         <executions>
337                             <execution>
338                                 <id>sign-artifacts</id>
339                                 <phase>verify</phase>
340                                 <goals>
341                                     <goal>sign</goal>
342                                 </goals>
343                             </execution>
344                         </executions>
345                     </plugin>
346                 </plugins>    
347             </build>            
348         </profile>
349     </profiles>
350     
351     <!-- Project Metadata -->
352     <url>https://shibboleth.internet2.edu/</url>
353     
354     <inceptionYear>2006</inceptionYear>
355     
356     <licenses>
357         <license>
358             <name>Apache 2</name>
359             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
360             <distribution>repo</distribution>
361         </license>
362     </licenses>
363     
364     <organization>
365         <name>Internet2</name>
366         <url>http://www.internet2.edu/</url>
367     </organization>
368     
369     <issueManagement>
370         <system>JIRA</system>
371         <url>http://bugs.internet2.edu/</url>
372     </issueManagement>
373     
374     <mailingLists>
375         <mailingList>
376             <name>Shibboleth Announce</name>
377             <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
378             <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
379             <post>shibboleth-announce@internet2.edu</post>
380             <archive>https://mail.internet2.edu/wws/arc/shibboleth-announce</archive>
381         </mailingList>
382         <mailingList>
383             <name>Shibboleth Users</name>
384             <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
385             <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
386             <post>shibboleth-users@internet2.edu</post>
387             <archive>https://mail.internet2.edu/wws/arc/shibboleth-users</archive>
388         </mailingList>
389         <mailingList>
390             <name>Shibboleth Development</name>
391             <subscribe>http://shibboleth.internet2.edu/support.html#lists</subscribe>
392             <unsubscribe>http://shibboleth.internet2.edu/support.html#lists</unsubscribe>
393             <post>shibboleth-dev@internet2.edu</post>
394             <archive>https://mail.internet2.edu/wws/arc/shibboleth-dev</archive>
395         </mailingList>
396     </mailingLists>
397     
398     <scm>
399         <connection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</connection>
400         <developerConnection>scm:svn:https://svn.middleware.georgetown.edu/java-idp/</developerConnection>
401         <tag>HEAD</tag>
402         <url>http://svn.middleware.georgetown.edu/view/?root=java-idp</url>
403     </scm>
404     
405     <developers>
406         <developer>
407             <id>cantor</id>
408             <name>Scott Cantor</name>
409             <organization>The Ohio State University</organization>
410             <organizationUrl>http://www.ohio-state.edu/</organizationUrl>
411             <roles>
412                 <role>developer</role>
413             </roles>
414             <timezone>-5</timezone>
415         </developer>
416         <developer>
417             <id>ndk</id>
418             <name>Nate Klingenstein</name>
419             <organization>Internet2</organization>
420             <organizationUrl>http://www.internet2.edu/</organizationUrl>
421             <roles>
422                 <role>documentation</role>
423             </roles>
424             <timezone>-7</timezone>
425         </developer>
426         <developer>
427             <id>lajoie</id>
428             <name>Chad La Joie</name>
429             <organization>SWITCH</organization>
430             <organizationUrl>http://www.switch.ch/</organizationUrl>
431             <roles>
432                 <role>developer</role>
433                 <role>documentation</role>
434             </roles>
435             <timezone>+1</timezone>
436         </developer>
437         <developer>
438             <id>wnorris</id>
439             <name>Will Norris</name>
440             <organization>University of Southern California</organization>
441             <organizationUrl>http://www.usc.edu/</organizationUrl>
442             <roles>
443                 <role>developer</role>
444             </roles>
445             <timezone>-8</timezone>
446         </developer>
447         <developer>
448             <id>rdw</id>
449             <name>Rod Widdowson</name>
450             <organization>University of Edinburgh</organization>
451             <organizationUrl>http://www.ed.ac.uk/</organizationUrl>
452             <roles>
453                 <role>developer</role>
454             </roles>
455             <timezone>0</timezone>
456         </developer>
457     </developers>
458     
459 </project>