Rev 160 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 160 | Rev 162 | ||
---|---|---|---|
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/xsd/maven-4.0.0.xsd">
|
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/xsd/maven-4.0.0.xsd">
|
2 | <modelVersion>4.0.0</modelVersion> |
2 | <modelVersion>4.0.0</modelVersion> |
3 | <parent>
|
3 | <parent>
|
4 | <artifactId>oss-parent</artifactId> |
4 | <artifactId>oss-parent</artifactId> |
5 | <groupId>org.sonatype.oss</groupId> |
5 | <groupId>org.sonatype.oss</groupId> |
6 | <version>3</version> |
6 | <version>3</version> |
7 | </parent>
|
7 | </parent>
|
8 | <groupId>me.soliveirajr</groupId> |
8 | <groupId>me.soliveirajr</groupId> |
9 | <artifactId>menta-container</artifactId> |
9 | <artifactId>menta-container</artifactId> |
10 | <version>1.1.2</version> |
- | |
- | 10 | <version>1.1.3-SNAPSHOT</version> |
|
11 | <name>MentaContainer</name> |
11 | <name>MentaContainer</name> |
12 | <description>A IOC container as simple and pragmatic as it can get with programmatic configuration through a Fluent API.</description> |
12 | <description>A IOC container as simple and pragmatic as it can get with programmatic configuration through a Fluent API.</description> |
13 | <url>http://maven.apache.org</url> |
13 | <url>http://maven.apache.org</url> |
14 | <licenses>
|
14 | <licenses>
|
15 | <license>
|
15 | <license>
|
16 | <name>GNU Lesser General Public License (LGPL), Version 2.1</name> |
16 | <name>GNU Lesser General Public License (LGPL), Version 2.1</name> |
17 | <url>http://www.fsf.org/licensing/licenses/lgpl.txt</url> |
17 | <url>http://www.fsf.org/licensing/licenses/lgpl.txt</url> |
18 | <distribution>repo</distribution> |
18 | <distribution>repo</distribution> |
19 | </license>
|
19 | </license>
|
20 | </licenses>
|
20 | </licenses>
|
21 | <scm>
|
21 | <scm>
|
22 | <connection>scm:svn:svn://soliveirajr.com/mentacontainer/tags/menta-container-1.1.2</connection> |
- | |
23 | <developerConnection>scm:svn:svn://soliveirajr.com/mentacontainer/tags/menta-container-1.1.2</developerConnection> |
- | |
24 | <url>svn://soliveirajr.com/mentacontainer/tags/menta-container-1.1.2</url> |
- | |
- | 22 | <connection>scm:svn:svn://soliveirajr.com/mentacontainer/trunk</connection> |
|
- | 23 | <developerConnection>scm:svn:svn://soliveirajr.com/mentacontainer/trunk</developerConnection> |
|
- | 24 | <url>svn://soliveirajr.com/mentacontainer/trunk</url> |
|
25 | </scm>
|
25 | </scm>
|
26 | <distributionManagement>
|
26 | <distributionManagement>
|
27 | <repository>
|
27 | <repository>
|
28 | <id>sonatype-nexus-staging</id> |
28 | <id>sonatype-nexus-staging</id> |
29 | <name>Nexus Release Repository</name> |
29 | <name>Nexus Release Repository</name> |
30 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
30 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
31 | </repository>
|
31 | </repository>
|
32 | <snapshotRepository>
|
32 | <snapshotRepository>
|
33 | <id>sonatype-nexus-snapshots</id> |
33 | <id>sonatype-nexus-snapshots</id> |
34 | <name>Sonatype Nexus Snapshots</name> |
34 | <name>Sonatype Nexus Snapshots</name> |
35 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
35 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
36 | </snapshotRepository>
|
36 | </snapshotRepository>
|
37 | </distributionManagement>
|
37 | </distributionManagement>
|
38 | <properties>
|
38 | <properties>
|
39 | <build.final.name>mentacontainer</build.final.name> |
39 | <build.final.name>mentacontainer</build.final.name> |
40 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
40 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
41 | <svn.tags>svn://soliveirajr.com/mentacontainer/tags</svn.tags> |
41 | <svn.tags>svn://soliveirajr.com/mentacontainer/tags</svn.tags> |
42 | <svn.url>svn://soliveirajr.com/mentacontainer/trunk</svn.url> |
42 | <svn.url>svn://soliveirajr.com/mentacontainer/trunk</svn.url> |
43 | </properties>
|
43 | </properties>
|
44 | <dependencies>
|
44 | <dependencies>
|
45 | <dependency>
|
45 | <dependency>
|
46 | <groupId>junit</groupId> |
46 | <groupId>junit</groupId> |
47 | <artifactId>junit</artifactId> |
47 | <artifactId>junit</artifactId> |
48 | <version>4.8.1</version> |
48 | <version>4.8.1</version> |
49 | <scope>test</scope> |
49 | <scope>test</scope> |
50 | </dependency>
|
50 | </dependency>
|
51 | </dependencies>
|
51 | </dependencies>
|
52 | <repositories>
|
52 | <repositories>
|
53 | <repository>
|
53 | <repository>
|
54 | <releases>
|
54 | <releases>
|
55 | <enabled>false</enabled> |
55 | <enabled>false</enabled> |
56 | </releases>
|
56 | </releases>
|
57 | <snapshots>
|
57 | <snapshots>
|
58 | <enabled>true</enabled> |
58 | <enabled>true</enabled> |
59 | </snapshots>
|
59 | </snapshots>
|
60 | <id>sonatype-nexus-snapshots</id> |
60 | <id>sonatype-nexus-snapshots</id> |
61 | <name>Sonatype Nexus Snapshots</name> |
61 | <name>Sonatype Nexus Snapshots</name> |
62 | <url>http://oss.sonatype.org/content/repositories/snapshots</url> |
62 | <url>http://oss.sonatype.org/content/repositories/snapshots</url> |
63 | </repository>
|
63 | </repository>
|
64 | <repository>
|
64 | <repository>
|
65 | <snapshots>
|
65 | <snapshots>
|
66 | <enabled>false</enabled> |
66 | <enabled>false</enabled> |
67 | </snapshots>
|
67 | </snapshots>
|
68 | <id>central</id> |
68 | <id>central</id> |
69 | <name>Maven Repository Switchboard</name> |
69 | <name>Maven Repository Switchboard</name> |
70 | <url>http://repo1.maven.org/maven2</url> |
70 | <url>http://repo1.maven.org/maven2</url> |
71 | </repository>
|
71 | </repository>
|
72 | </repositories>
|
72 | </repositories>
|
73 | <pluginRepositories>
|
73 | <pluginRepositories>
|
74 | <pluginRepository>
|
74 | <pluginRepository>
|
75 | <releases>
|
75 | <releases>
|
76 | <updatePolicy>never</updatePolicy> |
76 | <updatePolicy>never</updatePolicy> |
77 | </releases>
|
77 | </releases>
|
78 | <snapshots>
|
78 | <snapshots>
|
79 | <enabled>false</enabled> |
79 | <enabled>false</enabled> |
80 | </snapshots>
|
80 | </snapshots>
|
81 | <id>central</id> |
81 | <id>central</id> |
82 | <name>Maven Plugin Repository</name> |
82 | <name>Maven Plugin Repository</name> |
83 | <url>http://repo1.maven.org/maven2</url> |
83 | <url>http://repo1.maven.org/maven2</url> |
84 | </pluginRepository>
|
84 | </pluginRepository>
|
85 | </pluginRepositories>
|
85 | </pluginRepositories>
|
86 | <build>
|
86 | <build>
|
87 | <finalName>mentacontainer</finalName> |
87 | <finalName>mentacontainer</finalName> |
88 | <pluginManagement>
|
88 | <pluginManagement>
|
89 | <plugins>
|
89 | <plugins>
|
90 | <plugin>
|
90 | <plugin>
|
91 | <artifactId>maven-antrun-plugin</artifactId> |
91 | <artifactId>maven-antrun-plugin</artifactId> |
92 | <version>1.3</version> |
92 | <version>1.3</version> |
93 | </plugin>
|
93 | </plugin>
|
94 | <plugin>
|
94 | <plugin>
|
95 | <artifactId>maven-assembly-plugin</artifactId> |
95 | <artifactId>maven-assembly-plugin</artifactId> |
96 | <version>2.2-beta-5</version> |
96 | <version>2.2-beta-5</version> |
97 | </plugin>
|
97 | </plugin>
|
98 | <plugin>
|
98 | <plugin>
|
99 | <artifactId>maven-dependency-plugin</artifactId> |
99 | <artifactId>maven-dependency-plugin</artifactId> |
100 | <version>2.1</version> |
100 | <version>2.1</version> |
101 | </plugin>
|
101 | </plugin>
|
102 | <plugin>
|
102 | <plugin>
|
103 | <artifactId>maven-release-plugin</artifactId> |
103 | <artifactId>maven-release-plugin</artifactId> |
104 | <version>2.0</version> |
104 | <version>2.0</version> |
105 | <configuration>
|
105 | <configuration>
|
106 | <mavenExecutorId>forked-path</mavenExecutorId> |
106 | <mavenExecutorId>forked-path</mavenExecutorId> |
107 | </configuration>
|
107 | </configuration>
|
108 | </plugin>
|
108 | </plugin>
|
109 | </plugins>
|
109 | </plugins>
|
110 | </pluginManagement>
|
110 | </pluginManagement>
|
111 | <plugins>
|
111 | <plugins>
|
112 | 112 | ||
113 | <plugin>
|
113 | <plugin>
|
114 | <groupId>org.apache.maven.plugins</groupId> |
114 | <groupId>org.apache.maven.plugins</groupId> |
115 | <artifactId>maven-shade-plugin</artifactId> |
115 | <artifactId>maven-shade-plugin</artifactId> |
116 | <version>1.7</version> |
116 | <version>1.7</version> |
117 | <executions>
|
117 | <executions>
|
118 | <execution>
|
118 | <execution>
|
119 | <phase>package</phase> |
119 | <phase>package</phase> |
120 | <goals>
|
120 | <goals>
|
121 | <goal>shade</goal> |
121 | <goal>shade</goal> |
122 | </goals>
|
122 | </goals>
|
123 | <configuration>
|
123 | <configuration>
|
124 | <finalName>mentacontainer-all</finalName> |
124 | <finalName>mentacontainer-all</finalName> |
125 | <shadedArtifactAttached>true</shadedArtifactAttached> |
125 | <shadedArtifactAttached>true</shadedArtifactAttached> |
126 | <shadedClassifierName>all</shadedClassifierName> |
126 | <shadedClassifierName>all</shadedClassifierName> |
127 | </configuration>
|
127 | </configuration>
|
128 | </execution>
|
128 | </execution>
|
129 | </executions>
|
129 | </executions>
|
130 | </plugin>
|
130 | </plugin>
|
131 | 131 | ||
132 | 132 | ||
133 | <plugin>
|
133 | <plugin>
|
134 | <artifactId>maven-source-plugin</artifactId> |
134 | <artifactId>maven-source-plugin</artifactId> |
135 | <version>2.1.2</version> |
135 | <version>2.1.2</version> |
136 | <executions>
|
136 | <executions>
|
137 | <execution>
|
137 | <execution>
|
138 | <id>attach-sources</id> |
138 | <id>attach-sources</id> |
139 | <goals>
|
139 | <goals>
|
140 | <goal>jar</goal> |
140 | <goal>jar</goal> |
141 | </goals>
|
141 | </goals>
|
142 | </execution>
|
142 | </execution>
|
143 | </executions>
|
143 | </executions>
|
144 | </plugin>
|
144 | </plugin>
|
145 | <plugin>
|
145 | <plugin>
|
146 | <artifactId>maven-compiler-plugin</artifactId> |
146 | <artifactId>maven-compiler-plugin</artifactId> |
147 | <version>2.0.2</version> |
147 | <version>2.0.2</version> |
148 | <executions>
|
148 | <executions>
|
149 | <execution>
|
149 | <execution>
|
150 | <id>default-testCompile</id> |
150 | <id>default-testCompile</id> |
151 | <phase>test-compile</phase> |
151 | <phase>test-compile</phase> |
152 | <goals>
|
152 | <goals>
|
153 | <goal>testCompile</goal> |
153 | <goal>testCompile</goal> |
154 | </goals>
|
154 | </goals>
|
155 | <configuration>
|
155 | <configuration>
|
156 | <source>1.6</source> |
156 | <source>1.6</source> |
157 | <target>1.6</target> |
157 | <target>1.6</target> |
158 | </configuration>
|
158 | </configuration>
|
159 | </execution>
|
159 | </execution>
|
160 | <execution>
|
160 | <execution>
|
161 | <id>default-compile</id> |
161 | <id>default-compile</id> |
162 | <phase>compile</phase> |
162 | <phase>compile</phase> |
163 | <goals>
|
163 | <goals>
|
164 | <goal>compile</goal> |
164 | <goal>compile</goal> |
165 | </goals>
|
165 | </goals>
|
166 | <configuration>
|
166 | <configuration>
|
167 | <source>1.6</source> |
167 | <source>1.6</source> |
168 | <target>1.6</target> |
168 | <target>1.6</target> |
169 | </configuration>
|
169 | </configuration>
|
170 | </execution>
|
170 | </execution>
|
171 | </executions>
|
171 | </executions>
|
172 | <configuration>
|
172 | <configuration>
|
173 | <source>1.6</source> |
173 | <source>1.6</source> |
174 | <target>1.6</target> |
174 | <target>1.6</target> |
175 | </configuration>
|
175 | </configuration>
|
176 | </plugin>
|
176 | </plugin>
|
177 | <plugin>
|
177 | <plugin>
|
178 | <artifactId>maven-javadoc-plugin</artifactId> |
178 | <artifactId>maven-javadoc-plugin</artifactId> |
179 | <version>2.8</version> |
179 | <version>2.8</version> |
180 | <executions>
|
180 | <executions>
|
181 | <execution>
|
181 | <execution>
|
182 | <id>attach-javadocs</id> |
182 | <id>attach-javadocs</id> |
183 | <goals>
|
183 | <goals>
|
184 | <goal>jar</goal> |
184 | <goal>jar</goal> |
185 | </goals>
|
185 | </goals>
|
186 | </execution>
|
186 | </execution>
|
187 | </executions>
|
187 | </executions>
|
188 | </plugin>
|
188 | </plugin>
|
189 | <plugin>
|
189 | <plugin>
|
190 | <artifactId>maven-release-plugin</artifactId> |
190 | <artifactId>maven-release-plugin</artifactId> |
191 | <configuration>
|
191 | <configuration>
|
192 | <tagBase>svn://soliveirajr.com/mentacontainer/tags</tagBase> |
192 | <tagBase>svn://soliveirajr.com/mentacontainer/tags</tagBase> |
193 | <connectionUrl>scm:svn:svn://soliveirajr.com/mentacontainer/trunk</connectionUrl> |
193 | <connectionUrl>scm:svn:svn://soliveirajr.com/mentacontainer/trunk</connectionUrl> |
194 | <mavenExecutorId>forked-path</mavenExecutorId> |
194 | <mavenExecutorId>forked-path</mavenExecutorId> |
195 | </configuration>
|
195 | </configuration>
|
196 | </plugin>
|
196 | </plugin>
|
197 | <plugin>
|
197 | <plugin>
|
198 | <artifactId>maven-clean-plugin</artifactId> |
198 | <artifactId>maven-clean-plugin</artifactId> |
199 | <version>2.4.1</version> |
199 | <version>2.4.1</version> |
200 | <executions>
|
200 | <executions>
|
201 | <execution>
|
201 | <execution>
|
202 | <id>default-clean</id> |
202 | <id>default-clean</id> |
203 | <phase>clean</phase> |
203 | <phase>clean</phase> |
204 | <goals>
|
204 | <goals>
|
205 | <goal>clean</goal> |
205 | <goal>clean</goal> |
206 | </goals>
|
206 | </goals>
|
207 | </execution>
|
207 | </execution>
|
208 | </executions>
|
208 | </executions>
|
209 | </plugin>
|
209 | </plugin>
|
210 | <plugin>
|
210 | <plugin>
|
211 | <artifactId>maven-install-plugin</artifactId> |
211 | <artifactId>maven-install-plugin</artifactId> |
212 | <version>2.3.1</version> |
212 | <version>2.3.1</version> |
213 | <executions>
|
213 | <executions>
|
214 | <execution>
|
214 | <execution>
|
215 | <id>default-install</id> |
215 | <id>default-install</id> |
216 | <phase>install</phase> |
216 | <phase>install</phase> |
217 | <goals>
|
217 | <goals>
|
218 | <goal>install</goal> |
218 | <goal>install</goal> |
219 | </goals>
|
219 | </goals>
|
220 | </execution>
|
220 | </execution>
|
221 | </executions>
|
221 | </executions>
|
222 | </plugin>
|
222 | </plugin>
|
223 | <plugin>
|
223 | <plugin>
|
224 | <artifactId>maven-resources-plugin</artifactId> |
224 | <artifactId>maven-resources-plugin</artifactId> |
225 | <version>2.4.3</version> |
225 | <version>2.4.3</version> |
226 | <executions>
|
226 | <executions>
|
227 | <execution>
|
227 | <execution>
|
228 | <id>default-resources</id> |
228 | <id>default-resources</id> |
229 | <phase>process-resources</phase> |
229 | <phase>process-resources</phase> |
230 | <goals>
|
230 | <goals>
|
231 | <goal>resources</goal> |
231 | <goal>resources</goal> |
232 | </goals>
|
232 | </goals>
|
233 | </execution>
|
233 | </execution>
|
234 | <execution>
|
234 | <execution>
|
235 | <id>default-testResources</id> |
235 | <id>default-testResources</id> |
236 | <phase>process-test-resources</phase> |
236 | <phase>process-test-resources</phase> |
237 | <goals>
|
237 | <goals>
|
238 | <goal>testResources</goal> |
238 | <goal>testResources</goal> |
239 | </goals>
|
239 | </goals>
|
240 | </execution>
|
240 | </execution>
|
241 | </executions>
|
241 | </executions>
|
242 | </plugin>
|
242 | </plugin>
|
243 | <plugin>
|
243 | <plugin>
|
244 | <artifactId>maven-surefire-plugin</artifactId> |
244 | <artifactId>maven-surefire-plugin</artifactId> |
245 | <version>2.7.2</version> |
245 | <version>2.7.2</version> |
246 | <executions>
|
246 | <executions>
|
247 | <execution>
|
247 | <execution>
|
248 | <id>default-test</id> |
248 | <id>default-test</id> |
249 | <phase>test</phase> |
249 | <phase>test</phase> |
250 | <goals>
|
250 | <goals>
|
251 | <goal>test</goal> |
251 | <goal>test</goal> |
252 | </goals>
|
252 | </goals>
|
253 | </execution>
|
253 | </execution>
|
254 | </executions>
|
254 | </executions>
|
255 | </plugin>
|
255 | </plugin>
|
256 | <plugin>
|
256 | <plugin>
|
257 | <artifactId>maven-jar-plugin</artifactId> |
257 | <artifactId>maven-jar-plugin</artifactId> |
258 | <version>2.3.1</version> |
258 | <version>2.3.1</version> |
259 | <executions>
|
259 | <executions>
|
260 | <execution>
|
260 | <execution>
|
261 | <id>default-jar</id> |
261 | <id>default-jar</id> |
262 | <phase>package</phase> |
262 | <phase>package</phase> |
263 | <goals>
|
263 | <goals>
|
264 | <goal>jar</goal> |
264 | <goal>jar</goal> |
265 | </goals>
|
265 | </goals>
|
266 | </execution>
|
266 | </execution>
|
267 | </executions>
|
267 | </executions>
|
268 | </plugin>
|
268 | </plugin>
|
269 | <plugin>
|
269 | <plugin>
|
270 | <artifactId>maven-deploy-plugin</artifactId> |
270 | <artifactId>maven-deploy-plugin</artifactId> |
271 | <version>2.5</version> |
271 | <version>2.5</version> |
272 | <executions>
|
272 | <executions>
|
273 | <execution>
|
273 | <execution>
|
274 | <id>default-deploy</id> |
274 | <id>default-deploy</id> |
275 | <phase>deploy</phase> |
275 | <phase>deploy</phase> |
276 | <goals>
|
276 | <goals>
|
277 | <goal>deploy</goal> |
277 | <goal>deploy</goal> |
278 | </goals>
|
278 | </goals>
|
279 | </execution>
|
279 | </execution>
|
280 | </executions>
|
280 | </executions>
|
281 | </plugin>
|
281 | </plugin>
|
282 | <plugin>
|
282 | <plugin>
|
283 | <artifactId>maven-site-plugin</artifactId> |
283 | <artifactId>maven-site-plugin</artifactId> |
284 | <version>2.0.1</version> |
284 | <version>2.0.1</version> |
285 | <executions>
|
285 | <executions>
|
286 | <execution>
|
286 | <execution>
|
287 | <id>default-site</id> |
287 | <id>default-site</id> |
288 | <phase>site</phase> |
288 | <phase>site</phase> |
289 | <goals>
|
289 | <goals>
|
290 | <goal>site</goal> |
290 | <goal>site</goal> |
291 | </goals>
|
291 | </goals>
|
292 | <configuration>
|
292 | <configuration>
|
293 | <reportPlugins>
|
293 | <reportPlugins>
|
294 | <reportPlugin>
|
294 | <reportPlugin>
|
295 | <groupId>org.apache.maven.plugins</groupId> |
295 | <groupId>org.apache.maven.plugins</groupId> |
296 | <artifactId>maven-surefire-plugin</artifactId> |
296 | <artifactId>maven-surefire-plugin</artifactId> |
297 | <version>2.5</version> |
297 | <version>2.5</version> |
298 | </reportPlugin>
|
298 | </reportPlugin>
|
299 | <reportPlugin>
|
299 | <reportPlugin>
|
300 | <groupId>org.apache.maven.plugins</groupId> |
300 | <groupId>org.apache.maven.plugins</groupId> |
301 | <artifactId>maven-surefire-report-plugin</artifactId> |
301 | <artifactId>maven-surefire-report-plugin</artifactId> |
302 | <version>2.5</version> |
302 | <version>2.5</version> |
303 | </reportPlugin>
|
303 | </reportPlugin>
|
304 | <reportPlugin>
|
304 | <reportPlugin>
|
305 | <groupId>org.apache.maven.plugins</groupId> |
305 | <groupId>org.apache.maven.plugins</groupId> |
306 | <artifactId>maven-javadoc-plugin</artifactId> |
306 | <artifactId>maven-javadoc-plugin</artifactId> |
307 | <version>2.8</version> |
307 | <version>2.8</version> |
308 | <configuration>...</configuration> |
308 | <configuration>...</configuration> |
309 | </reportPlugin>
|
309 | </reportPlugin>
|
310 | <reportPlugin>
|
310 | <reportPlugin>
|
311 | <groupId>org.apache.maven.plugins</groupId> |
311 | <groupId>org.apache.maven.plugins</groupId> |
312 | <artifactId>maven-project-info-reports-plugin</artifactId> |
312 | <artifactId>maven-project-info-reports-plugin</artifactId> |
313 | </reportPlugin>
|
313 | </reportPlugin>
|
314 | </reportPlugins>
|
314 | </reportPlugins>
|
315 | </configuration>
|
315 | </configuration>
|
316 | </execution>
|
316 | </execution>
|
317 | <execution>
|
317 | <execution>
|
318 | <id>default-deploy</id> |
318 | <id>default-deploy</id> |
319 | <phase>site-deploy</phase> |
319 | <phase>site-deploy</phase> |
320 | <goals>
|
320 | <goals>
|
321 | <goal>deploy</goal> |
321 | <goal>deploy</goal> |
322 | </goals>
|
322 | </goals>
|
323 | <configuration>
|
323 | <configuration>
|
324 | <reportPlugins>
|
324 | <reportPlugins>
|
325 | <reportPlugin>
|
325 | <reportPlugin>
|
326 | <groupId>org.apache.maven.plugins</groupId> |
326 | <groupId>org.apache.maven.plugins</groupId> |
327 | <artifactId>maven-surefire-plugin</artifactId> |
327 | <artifactId>maven-surefire-plugin</artifactId> |
328 | <version>2.5</version> |
328 | <version>2.5</version> |
329 | </reportPlugin>
|
329 | </reportPlugin>
|
330 | <reportPlugin>
|
330 | <reportPlugin>
|
331 | <groupId>org.apache.maven.plugins</groupId> |
331 | <groupId>org.apache.maven.plugins</groupId> |
332 | <artifactId>maven-surefire-report-plugin</artifactId> |
332 | <artifactId>maven-surefire-report-plugin</artifactId> |
333 | <version>2.5</version> |
333 | <version>2.5</version> |
334 | </reportPlugin>
|
334 | </reportPlugin>
|
335 | <reportPlugin>
|
335 | <reportPlugin>
|
336 | <groupId>org.apache.maven.plugins</groupId> |
336 | <groupId>org.apache.maven.plugins</groupId> |
337 | <artifactId>maven-javadoc-plugin</artifactId> |
337 | <artifactId>maven-javadoc-plugin</artifactId> |
338 | <version>2.8</version> |
338 | <version>2.8</version> |
339 | <configuration>...</configuration> |
339 | <configuration>...</configuration> |
340 | </reportPlugin>
|
340 | </reportPlugin>
|
341 | <reportPlugin>
|
341 | <reportPlugin>
|
342 | <groupId>org.apache.maven.plugins</groupId> |
342 | <groupId>org.apache.maven.plugins</groupId> |
343 | <artifactId>maven-project-info-reports-plugin</artifactId> |
343 | <artifactId>maven-project-info-reports-plugin</artifactId> |
344 | </reportPlugin>
|
344 | </reportPlugin>
|
345 | </reportPlugins>
|
345 | </reportPlugins>
|
346 | </configuration>
|
346 | </configuration>
|
347 | </execution>
|
347 | </execution>
|
348 | </executions>
|
348 | </executions>
|
349 | <configuration>
|
349 | <configuration>
|
350 | <reportPlugins>
|
350 | <reportPlugins>
|
351 | <reportPlugin>
|
351 | <reportPlugin>
|
352 | <groupId>org.apache.maven.plugins</groupId> |
352 | <groupId>org.apache.maven.plugins</groupId> |
353 | <artifactId>maven-surefire-plugin</artifactId> |
353 | <artifactId>maven-surefire-plugin</artifactId> |
354 | <version>2.5</version> |
354 | <version>2.5</version> |
355 | </reportPlugin>
|
355 | </reportPlugin>
|
356 | <reportPlugin>
|
356 | <reportPlugin>
|
357 | <groupId>org.apache.maven.plugins</groupId> |
357 | <groupId>org.apache.maven.plugins</groupId> |
358 | <artifactId>maven-surefire-report-plugin</artifactId> |
358 | <artifactId>maven-surefire-report-plugin</artifactId> |
359 | <version>2.5</version> |
359 | <version>2.5</version> |
360 | </reportPlugin>
|
360 | </reportPlugin>
|
361 | <reportPlugin>
|
361 | <reportPlugin>
|
362 | <groupId>org.apache.maven.plugins</groupId> |
362 | <groupId>org.apache.maven.plugins</groupId> |
363 | <artifactId>maven-javadoc-plugin</artifactId> |
363 | <artifactId>maven-javadoc-plugin</artifactId> |
364 | <version>2.8</version> |
364 | <version>2.8</version> |
365 | <configuration>...</configuration> |
365 | <configuration>...</configuration> |
366 | </reportPlugin>
|
366 | </reportPlugin>
|
367 | <reportPlugin>
|
367 | <reportPlugin>
|
368 | <groupId>org.apache.maven.plugins</groupId> |
368 | <groupId>org.apache.maven.plugins</groupId> |
369 | <artifactId>maven-project-info-reports-plugin</artifactId> |
369 | <artifactId>maven-project-info-reports-plugin</artifactId> |
370 | </reportPlugin>
|
370 | </reportPlugin>
|
371 | </reportPlugins>
|
371 | </reportPlugins>
|
372 | </configuration>
|
372 | </configuration>
|
373 | </plugin>
|
373 | </plugin>
|
374 | </plugins>
|
374 | </plugins>
|
375 | </build>
|
375 | </build>
|
376 | <reporting>
|
376 | <reporting>
|
377 | <plugins>
|
377 | <plugins>
|
378 | <plugin>
|
378 | <plugin>
|
379 | <artifactId>maven-surefire-plugin</artifactId> |
379 | <artifactId>maven-surefire-plugin</artifactId> |
380 | <version>2.5</version> |
380 | <version>2.5</version> |
381 | </plugin>
|
381 | </plugin>
|
382 | <plugin>
|
382 | <plugin>
|
383 | <artifactId>maven-surefire-report-plugin</artifactId> |
383 | <artifactId>maven-surefire-report-plugin</artifactId> |
384 | <version>2.5</version> |
384 | <version>2.5</version> |
385 | </plugin>
|
385 | </plugin>
|
386 | <plugin>
|
386 | <plugin>
|
387 | <artifactId>maven-javadoc-plugin</artifactId> |
387 | <artifactId>maven-javadoc-plugin</artifactId> |
388 | <version>2.8</version> |
388 | <version>2.8</version> |
389 | </plugin>
|
389 | </plugin>
|
390 | </plugins>
|
390 | </plugins>
|
391 | </reporting>
|
391 | </reporting>
|
392 | <profiles>
|
392 | <profiles>
|
393 | <profile>
|
393 | <profile>
|
394 | <id>release-sign-artifacts</id> |
394 | <id>release-sign-artifacts</id> |
395 | <activation>
|
395 | <activation>
|
396 | <property>
|
396 | <property>
|
397 | <name>performRelease</name> |
397 | <name>performRelease</name> |
398 | <value>true</value> |
398 | <value>true</value> |
399 | </property>
|
399 | </property>
|
400 | </activation>
|
400 | </activation>
|
401 | <build>
|
401 | <build>
|
402 | <plugins>
|
402 | <plugins>
|
403 | <plugin>
|
403 | <plugin>
|
404 | <artifactId>maven-gpg-plugin</artifactId> |
404 | <artifactId>maven-gpg-plugin</artifactId> |
405 | <executions>
|
405 | <executions>
|
406 | <execution>
|
406 | <execution>
|
407 | <id>sign-artifacts</id> |
407 | <id>sign-artifacts</id> |
408 | <phase>verify</phase> |
408 | <phase>verify</phase> |
409 | <goals>
|
409 | <goals>
|
410 | <goal>sign</goal> |
410 | <goal>sign</goal> |
411 | </goals>
|
411 | </goals>
|
412 | </execution>
|
412 | </execution>
|
413 | </executions>
|
413 | </executions>
|
414 | </plugin>
|
414 | </plugin>
|
415 | </plugins>
|
415 | </plugins>
|
416 | </build>
|
416 | </build>
|
417 | </profile>
|
417 | </profile>
|
418 | </profiles>
|
418 | </profiles>
|
419 | </project>
|
419 | </project>
|
420 | 420 |