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