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