JAL-3210 Almost working goomph build
[jalview.git] / gradle / m2-old / repository / org / sonatype / spice / spice-parent / 17 / spice-parent-17.pom
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.sonatype.forge</groupId>
7     <artifactId>forge-parent</artifactId>
8     <version>10</version>
9     <relativePath />
10   </parent>
11
12   <groupId>org.sonatype.spice</groupId>
13   <artifactId>spice-parent</artifactId>
14   <version>17</version>
15   <packaging>pom</packaging>
16
17   <name>Sonatype Spice Components</name>
18
19   <scm>
20     <connection>scm:git:git://github.com/sonatype/oss-parents.git</connection>
21     <developerConnection>scm:git:git@github.com:sonatype/oss-parents.git</developerConnection>
22     <url>https://github.com/sonatype/spice-parent</url>
23   </scm>
24
25   <licenses>
26     <license>
27       <name>Apache License, Version 2.0</name>
28       <url>http://www.apache.org/licenses/LICENSE-2.0</url>
29       <distribution>repo</distribution>
30     </license>
31   </licenses>
32
33   <ciManagement>
34     <system>Hudson</system>
35     <url>https://grid.sonatype.org/ci/view/Spice/</url>
36   </ciManagement>
37
38   <issueManagement>
39     <system>JIRA</system>
40     <url>https://issues.sonatype.org/browse/SPICE</url>
41   </issueManagement>
42
43   <properties>
44     <sisu-inject.version>2.1.1</sisu-inject.version>
45     <slf4j.version>1.6.1</slf4j.version>
46   </properties>
47
48   <dependencyManagement>
49     <dependencies>
50
51       <!-- Inject Bean container -->
52       <!-- Spice hosts SISU/Plexus-legacy libraries, and they expect they are embedded into apps having these provided -->
53       <!-- That makes: shouldn't SISU be actually "provided" instead? -->
54       <dependency>
55         <groupId>org.sonatype.sisu</groupId>
56         <artifactId>sisu-inject-bean</artifactId>
57         <version>${sisu-inject.version}</version>
58         <scope>runtime</scope>
59       </dependency>
60       <dependency>
61         <groupId>org.sonatype.sisu</groupId>
62         <artifactId>sisu-guice</artifactId>
63         <version>2.9.4</version>
64         <classifier>no_aop</classifier>
65         <scope>runtime</scope>
66       </dependency>
67       <dependency>
68         <groupId>javax.inject</groupId>
69         <artifactId>javax.inject</artifactId>
70         <version>1</version>
71         <scope>compile</scope>
72       </dependency>
73
74       <!-- Plexus support (the version should be tied to SISU used ones!) -->
75       <!-- Plexus needs to be compiled against, is specific (unlike JSR330-enabled SISU is) -->
76       <dependency>
77         <groupId>org.sonatype.sisu</groupId>
78         <artifactId>sisu-inject-plexus</artifactId>
79         <version>${sisu-inject.version}</version>
80         <scope>compile</scope>
81       </dependency>
82       <dependency>
83         <groupId>org.codehaus.plexus</groupId>
84         <artifactId>plexus-component-annotations</artifactId>
85         <version>1.5.5</version>
86         <scope>compile</scope>
87       </dependency>
88       <dependency>
89         <groupId>org.codehaus.plexus</groupId>
90         <artifactId>plexus-classworlds</artifactId>
91         <version>2.4</version>
92         <scope>compile</scope>
93       </dependency>
94       <dependency>
95         <groupId>org.codehaus.plexus</groupId>
96         <artifactId>plexus-utils</artifactId>
97         <version>2.0.5</version>
98         <scope>compile</scope>
99       </dependency>
100
101       <!-- SLF4J Logging -->
102       <!-- Only those needed during compile and runtime phases -->
103       <!-- Spice is a library collection, so only the "simple" backend for testing and nothing more -->
104       <dependency>
105         <groupId>org.slf4j</groupId>
106         <artifactId>slf4j-api</artifactId>
107         <version>${slf4j.version}</version>
108         <type>jar</type>
109         <scope>compile</scope>
110       </dependency>
111       <dependency>
112         <groupId>org.slf4j</groupId>
113         <artifactId>jcl-over-slf4j</artifactId>
114         <version>${slf4j.version}</version>
115         <type>jar</type>
116         <scope>runtime</scope>
117       </dependency>
118       <dependency>
119         <groupId>org.slf4j</groupId>
120         <artifactId>jul-to-slf4j</artifactId>
121         <version>${slf4j.version}</version>
122         <type>jar</type>
123         <scope>runtime</scope>
124       </dependency>
125       <dependency>
126         <groupId>org.slf4j</groupId>
127         <artifactId>slf4j-simple</artifactId>
128         <version>${slf4j.version}</version>
129         <type>jar</type>
130         <scope>test</scope>
131       </dependency>
132
133       <!-- Standard test -->
134       <dependency>
135         <groupId>junit</groupId>
136         <artifactId>junit</artifactId>
137         <version>4.8.2</version>
138         <scope>test</scope>
139       </dependency>
140     </dependencies>
141   </dependencyManagement>
142
143   <build>
144     <pluginManagement>
145       <plugins>
146         <plugin>
147           <groupId>org.codehaus.plexus</groupId>
148           <artifactId>plexus-component-metadata</artifactId>
149           <version>1.5.5</version>
150           <executions>
151             <execution>
152               <id>process-classes</id>
153               <goals>
154                 <goal>generate-metadata</goal>
155               </goals>
156             </execution>
157             <execution>
158               <id>process-test-classes</id>
159               <goals>
160                 <goal>generate-test-metadata</goal>
161               </goals>
162             </execution>
163           </executions>
164         </plugin>
165       </plugins>
166     </pluginManagement>
167   </build>
168
169   <reporting>
170     <plugins>
171       <plugin>
172         <groupId>org.apache.maven.plugins</groupId>
173         <artifactId>maven-javadoc-plugin</artifactId>
174         <version>2.5</version>
175         <configuration>
176           <tagletArtifacts>
177             <tagletArtifact>
178               <groupId>org.apache.maven.plugin-tools</groupId>
179               <artifactId>maven-plugin-tools-javadoc</artifactId>
180               <version>2.5</version>
181             </tagletArtifact>
182             <tagletArtifact>
183               <groupId>org.codehaus.plexus</groupId>
184               <artifactId>plexus-javadoc</artifactId>
185               <version>1.0</version>
186             </tagletArtifact>
187           </tagletArtifacts>
188         </configuration>
189       </plugin>
190       <plugin>
191         <groupId>org.apache.maven.plugins</groupId>
192         <artifactId>maven-project-info-reports-plugin</artifactId>
193         <version>2.1.1</version>
194         <reportSets>
195           <reportSet>
196             <reports>
197               <!-- Broken, don't know why. -->
198               <report>dependencies</report>
199               <report>project-team</report>
200               <report>mailing-list</report>
201               <report>cim</report>
202               <report>issue-tracking</report>
203               <report>license</report>
204               <report>scm</report>
205             </reports>
206           </reportSet>
207         </reportSets>
208       </plugin>
209     </plugins>
210   </reporting>
211 </project>