Revert change in rev 2833
[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.3</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.3</version>
41         </dependency>
42         <dependency>
43             <groupId>javax.servlet</groupId>
44             <artifactId>servlet-api</artifactId>
45             <version>2.4</version>
46         </dependency>
47         
48         <!-- Provided dependencies -->
49                 
50         <!-- Runtime dependencies -->
51         <dependency>
52             <groupId>org.apache.xerces</groupId>
53             <artifactId>xml-apis</artifactId>
54             <version>2.9.1</version>
55             <scope>runtime</scope>
56         </dependency>
57         <dependency>
58             <groupId>org.apache.xerces</groupId>
59             <artifactId>xercesImpl</artifactId>
60             <version>2.9.1</version>
61             <scope>runtime</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.apache.xerces</groupId>
65             <artifactId>resolver</artifactId>
66             <version>2.9.1</version>
67             <scope>runtime</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.apache.xerces</groupId>
71             <artifactId>serializer</artifactId>
72             <version>2.9.1</version>
73             <scope>runtime</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.apache.xalan</groupId>
77             <artifactId>xalan</artifactId>
78             <version>2.7.1</version>
79             <scope>runtime</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.apache.ant</groupId>
83             <artifactId>ant</artifactId>
84             <version>1.7.0</version>
85             <scope>runtime</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.apache.ant</groupId>
89             <artifactId>ant-nodeps</artifactId>
90             <version>1.7.0</version>
91             <scope>runtime</scope>
92         </dependency>
93         <dependency>
94             <groupId>ant-contrib</groupId>
95             <artifactId>ant-contrib</artifactId>
96             <version>1.0b2</version>
97             <scope>runtime</scope>
98             <exclusions>
99                 <exclusion>
100                     <groupId>ant</groupId>
101                     <artifactId>ant</artifactId>
102                 </exclusion>
103             </exclusions>
104         </dependency>
105         <dependency>
106             <groupId>edu.internet2.middleware</groupId>
107             <artifactId>ant-extensions</artifactId>
108             <version>13Apr2008</version>
109             <scope>runtime</scope>
110         </dependency>
111         <dependency>
112             <groupId>edu.internet2.middleware</groupId>
113             <artifactId>shibboleth-jce</artifactId>
114             <version>1.0.0</version>
115             <scope>runtime</scope>
116             <exclusions>
117                 <exclusion>
118                     <groupId>tomcat</groupId>
119                     <artifactId>catalina</artifactId>
120                 </exclusion>
121             </exclusions>
122         </dependency>
123         
124         <!-- Test dependencies -->
125         <dependency>
126             <groupId>junit</groupId>
127             <artifactId>junit</artifactId>
128             <version>3.8.1</version>
129             <scope>test</scope>
130         </dependency>
131         <dependency>
132             <groupId>xmlunit</groupId>
133             <artifactId>xmlunit</artifactId>
134             <version>1.0</version>
135             <scope>test</scope>
136         </dependency>
137         <dependency>
138             <groupId>org.springframework</groupId>
139             <artifactId>spring-mock</artifactId>
140             <version>2.0.8</version>
141             <scope>test</scope>
142             <exclusions>
143                 <exclusion>
144                     <groupId>commons-logging</groupId>
145                     <artifactId>commons-logging</artifactId>
146                 </exclusion>
147             </exclusions>
148         </dependency>
149     </dependencies>
150     
151     <build>
152         <plugins>
153             <plugin>
154                 <groupId>org.apache.maven.plugins</groupId>
155                 <artifactId>maven-compiler-plugin</artifactId>
156                 <configuration>
157                     <source>1.5</source>
158                     <target>1.5</target>
159                     <debug>true</debug>
160                 </configuration>
161             </plugin>
162             <plugin>
163                 <groupId>org.apache.maven.plugins</groupId>
164                 <artifactId>maven-assembly-plugin</artifactId>
165                 <configuration>
166                     <descriptors>
167                         <descriptor>src/main/assembly/bin.xml</descriptor>
168                         <descriptor>src/main/assembly/src.xml</descriptor>
169                     </descriptors>
170                     <tarLongFileMode>gnu</tarLongFileMode>
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>