First part of mavenizing IdP
[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.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>
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.shibboleth</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         
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     </dependencies>
139     
140     <build>
141         <plugins>
142             <plugin>
143                 <groupId>org.apache.maven.plugins</groupId>
144                 <artifactId>maven-compiler-plugin</artifactId>
145                 <configuration>
146                     <source>1.5</source>
147                     <target>1.5</target>
148                     <debug>true</debug>
149                 </configuration>
150             </plugin>
151             <plugin>
152                 <groupId>org.apache.maven.plugins</groupId>
153                 <artifactId>maven-assembly-plugin</artifactId>
154                 <configuration>
155                     <descriptors>
156                         <descriptor>src/main/assembly/bin.xml</descriptor>
157                         <descriptor>src/main/assembly/src.xml</descriptor>
158                     </descriptors>
159                 </configuration>
160                 <executions>
161                     <execution>
162                         <id>make-assembly</id>
163                         <phase>package</phase>
164                         <goals>
165                             <goal>attached</goal>
166                         </goals>
167                     </execution>
168                 </executions>
169             </plugin>
170         </plugins>
171     </build>
172
173     <reporting>
174         <plugins>
175             <plugin>
176                 <groupId>org.apache.maven.plugins</groupId>
177                 <artifactId>maven-javadoc-plugin</artifactId>
178                 <configuration>
179                     <links>
180                         <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
181                     </links>
182                     <quiet>true</quiet>
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>
188                 </configuration>
189             </plugin>
190             <plugin>
191                 <groupId>org.apache.maven.plugins</groupId>
192                 <artifactId>maven-jxr-plugin</artifactId>
193                 <configuration>
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>                    
198                 </configuration>
199             </plugin>
200             <plugin>
201                 <groupId>org.apache.maven.plugins</groupId>
202                 <artifactId>maven-checkstyle-plugin</artifactId>
203                 <configuration>
204                     <configLocation>checkstyle.xml</configLocation>
205                     <outputDirectory>${project.reporting.outputDirectory}/style</outputDirectory>
206                     <enableRSS>false</enableRSS>
207                 </configuration>
208             </plugin>
209             <plugin>
210                 <groupId>org.apache.maven.plugins</groupId>
211                 <artifactId>maven-surefire-report-plugin</artifactId>
212                 <configuration>
213                     <outputDirectory>${project.reporting.outputDirectory}/unitTest</outputDirectory>
214                     <xrefLocation>${project.reporting.outputDirectory}/xref</xrefLocation>
215                 </configuration>
216             </plugin>
217         </plugins>
218     </reporting>
219     
220     <profiles>
221         <profile>
222             <id>release</id>
223             <build>
224                 <plugins>
225                     <plugin>
226                         <artifactId>maven-compiler-plugin</artifactId>
227                     </plugin>
228                     <plugin>
229                         <groupId>org.apache.maven.plugins</groupId>
230                         <artifactId>maven-javadoc-plugin</artifactId>
231                         <executions>
232                             <execution>
233                                 <id>release-javadoc</id>
234                                 <phase>package</phase>
235                                 <goals>
236                                     <goal>javadoc</goal>
237                                 </goals>
238                             </execution>
239                         </executions>
240                     </plugin>
241                     <plugin>
242                         <groupId>org.apache.maven.plugins</groupId>
243                         <artifactId>maven-jxr-plugin</artifactId>
244                         <executions>
245                             <execution>
246                                 <id>release-jxr</id>
247                                 <phase>package</phase>
248                                 <goals>
249                                     <goal>jxr</goal>
250                                 </goals>
251                             </execution>
252                         </executions>
253                     </plugin>
254                     <plugin>
255                         <groupId>org.apache.maven.plugins</groupId>
256                         <artifactId>maven-checkstyle-plugin</artifactId>
257                         <executions>
258                             <execution>
259                                 <id>release-checkstyle</id>
260                                 <phase>package</phase>
261                                 <goals>
262                                     <goal>checkstyle</goal>
263                                 </goals>
264                             </execution>
265                         </executions>
266                     </plugin>
267                     <plugin>
268                         <groupId>org.apache.maven.plugins</groupId>
269                         <artifactId>maven-surefire-report-plugin</artifactId>
270                         <executions>
271                             <execution>
272                                 <id>release-unitTest</id>
273                                 <phase>package</phase>
274                                 <goals>
275                                     <goal>report-only</goal>
276                                 </goals>
277                             </execution>
278                         </executions>
279                     </plugin>
280                     <plugin>
281                         <artifactId>maven-assembly-plugin</artifactId>
282                         <executions>
283                             <execution>
284                                 <id>make-assembly</id>
285                                 <phase>package</phase>
286                                 <goals>
287                                     <goal>attached</goal>
288                                 </goals>
289                             </execution>
290                         </executions>
291                     </plugin>
292                     <plugin>
293                         <groupId>org.apache.maven.plugins</groupId>
294                         <artifactId>maven-gpg-plugin</artifactId>
295                         <executions>
296                             <execution>
297                                 <id>sign-artifacts</id>
298                                 <phase>verify</phase>
299                                 <goals>
300                                     <goal>sign</goal>
301                                 </goals>
302                             </execution>
303                         </executions>
304                     </plugin>
305                 </plugins>    
306             </build>            
307         </profile>
308     </profiles>
309     
310     <!-- Project Metadata -->
311     <url>https://opensaml.org/</url>
312     
313     <inceptionYear>2006</inceptionYear>
314     
315     <licenses>
316         <license>
317             <name>Apache 2</name>
318             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
319             <distribution>repo</distribution>
320         </license>
321     </licenses>
322     
323     <organization>
324         <name>Internet2</name>
325         <url>http://www.internet2.edu/</url>
326     </organization>
327     
328     <issueManagement>
329         <system>JIRA</system>
330         <url>http://bugs.internet2.edu/</url>
331     </issueManagement>
332     
333     <mailingLists>
334         <mailingList>
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>
340             <otherArchives>
341                 <otherArchive>http://groups.google.com/group/opensaml-users</otherArchive>
342             </otherArchives>
343         </mailingList>
344     </mailingLists>
345     
346     <scm>
347         <connection>scm:svn:https://svn.middleware.georgetown.edu/java-xmltooling/</connection>
348         <developerConnection>scm:svn:https://svn.middleware.georgetown.edu/java-xmltooling/</developerConnection>
349         <tag>HEAD</tag>
350         <url>http://svn.middleware.georgetown.edu/view/?root=java-xmltooling</url>
351     </scm>
352     
353     <developers>
354         <developer>
355             <id>cantor</id>
356             <name>Scott Cantor</name>
357             <organization>The Ohio State University</organization>
358             <organizationUrl>http://www.ohio-state.edu/</organizationUrl>
359             <roles>
360                 <role>developer</role>
361             </roles>
362             <timezone>-5</timezone>
363         </developer>
364         <developer>
365             <id>ndk</id>
366             <name>Nate Klingenstein</name>
367             <organization>Internet2</organization>
368             <organizationUrl>http://www.internet2.edu/</organizationUrl>
369             <roles>
370                 <role>documentation</role>
371             </roles>
372             <timezone>-7</timezone>
373         </developer>
374         <developer>
375             <id>lajoie</id>
376             <name>Chad La Joie</name>
377             <organization>SWITCH</organization>
378             <organizationUrl>http://www.switch.ch/</organizationUrl>
379             <roles>
380                 <role>developer</role>
381                 <role>documentation</role>
382             </roles>
383             <timezone>+1</timezone>
384         </developer>
385         <developer>
386             <id>wnorris</id>
387             <name>Will Norris</name>
388             <organization>University of Southern California</organization>
389             <organizationUrl>http://www.usc.edu/</organizationUrl>
390             <roles>
391                 <role>developer</role>
392             </roles>
393             <timezone>-8</timezone>
394         </developer>
395         <developer>
396             <id>rdw</id>
397             <name>Rod Widdowson</name>
398             <organization>University of Edinburgh</organization>
399             <organizationUrl>http://www.ed.ac.uk/</organizationUrl>
400             <roles>
401                 <role>developer</role>
402             </roles>
403             <timezone>0</timezone>
404         </developer>
405     </developers>
406     
407 </project>