Rev 113 | Rev 116 | 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> |
||
113 | soliveira | 10 | <version>0.9.8-SNAPSHOT</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> |
113 | soliveira | 22 | <connection>scm:svn:svn://saoj-la.dyndns.org/mentacontainer/trunk</connection> |
23 | <developerConnection>scm:svn:svn://saoj-la.dyndns.org/mentacontainer/trunk</developerConnection> |
||
24 | <url>svn://saoj-la.dyndns.org/mentacontainer/trunk</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> |
||
41 | <svn.tags>svn://saoj-la.dyndns.org/mentacontainer/tags</svn.tags> |
||
42 | <svn.url>svn://saoj-la.dyndns.org/mentacontainer/trunk</svn.url> |
||
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> |
||
112 | <plugin> |
||
113 | <artifactId>maven-source-plugin</artifactId> |
||
114 | <version>2.1.2</version> |
||
115 | <executions> |
||
116 | <execution> |
||
117 | <id>attach-sources</id> |
||
118 | <goals> |
||
119 | <goal>jar</goal> |
||
120 | </goals> |
||
121 | </execution> |
||
122 | </executions> |
||
123 | </plugin> |
||
124 | <plugin> |
||
125 | <artifactId>maven-compiler-plugin</artifactId> |
||
126 | <version>2.0.2</version> |
||
127 | <executions> |
||
128 | <execution> |
||
129 | <id>default-testCompile</id> |
||
130 | <phase>test-compile</phase> |
||
131 | <goals> |
||
132 | <goal>testCompile</goal> |
||
133 | </goals> |
||
134 | <configuration> |
||
135 | <source>1.6</source> |
||
136 | <target>1.6</target> |
||
137 | </configuration> |
||
138 | </execution> |
||
139 | <execution> |
||
140 | <id>default-compile</id> |
||
141 | <phase>compile</phase> |
||
142 | <goals> |
||
143 | <goal>compile</goal> |
||
144 | </goals> |
||
145 | <configuration> |
||
146 | <source>1.6</source> |
||
147 | <target>1.6</target> |
||
148 | </configuration> |
||
149 | </execution> |
||
150 | </executions> |
||
151 | <configuration> |
||
152 | <source>1.6</source> |
||
153 | <target>1.6</target> |
||
154 | </configuration> |
||
155 | </plugin> |
||
156 | <plugin> |
||
157 | <artifactId>maven-javadoc-plugin</artifactId> |
||
114 | soliveira | 158 | <version>2.8</version> |
77 | soliveira | 159 | <executions> |
160 | <execution> |
||
161 | <id>attach-javadocs</id> |
||
162 | <goals> |
||
163 | <goal>jar</goal> |
||
164 | </goals> |
||
165 | </execution> |
||
166 | </executions> |
||
167 | </plugin> |
||
168 | <plugin> |
||
169 | <artifactId>maven-release-plugin</artifactId> |
||
170 | <version>2.0</version> |
||
171 | <configuration> |
||
172 | <tagBase>svn://saoj-la.dyndns.org/mentacontainer/tags</tagBase> |
||
173 | <connectionUrl>scm:svn:svn://saoj-la.dyndns.org/mentacontainer/trunk</connectionUrl> |
||
174 | <mavenExecutorId>forked-path</mavenExecutorId> |
||
175 | </configuration> |
||
176 | </plugin> |
||
177 | <plugin> |
||
178 | <artifactId>maven-clean-plugin</artifactId> |
||
179 | <version>2.4.1</version> |
||
180 | <executions> |
||
181 | <execution> |
||
182 | <id>default-clean</id> |
||
183 | <phase>clean</phase> |
||
184 | <goals> |
||
185 | <goal>clean</goal> |
||
186 | </goals> |
||
187 | </execution> |
||
188 | </executions> |
||
189 | </plugin> |
||
190 | <plugin> |
||
191 | <artifactId>maven-install-plugin</artifactId> |
||
192 | <version>2.3.1</version> |
||
193 | <executions> |
||
194 | <execution> |
||
195 | <id>default-install</id> |
||
196 | <phase>install</phase> |
||
197 | <goals> |
||
198 | <goal>install</goal> |
||
199 | </goals> |
||
200 | </execution> |
||
201 | </executions> |
||
202 | </plugin> |
||
203 | <plugin> |
||
204 | <artifactId>maven-resources-plugin</artifactId> |
||
205 | <version>2.4.3</version> |
||
206 | <executions> |
||
207 | <execution> |
||
208 | <id>default-resources</id> |
||
209 | <phase>process-resources</phase> |
||
210 | <goals> |
||
211 | <goal>resources</goal> |
||
212 | </goals> |
||
213 | </execution> |
||
214 | <execution> |
||
215 | <id>default-testResources</id> |
||
216 | <phase>process-test-resources</phase> |
||
217 | <goals> |
||
218 | <goal>testResources</goal> |
||
219 | </goals> |
||
220 | </execution> |
||
221 | </executions> |
||
222 | </plugin> |
||
223 | <plugin> |
||
224 | <artifactId>maven-surefire-plugin</artifactId> |
||
225 | <version>2.7.2</version> |
||
226 | <executions> |
||
227 | <execution> |
||
228 | <id>default-test</id> |
||
229 | <phase>test</phase> |
||
230 | <goals> |
||
231 | <goal>test</goal> |
||
232 | </goals> |
||
233 | </execution> |
||
234 | </executions> |
||
235 | </plugin> |
||
236 | <plugin> |
||
237 | <artifactId>maven-jar-plugin</artifactId> |
||
238 | <version>2.3.1</version> |
||
239 | <executions> |
||
240 | <execution> |
||
241 | <id>default-jar</id> |
||
242 | <phase>package</phase> |
||
243 | <goals> |
||
244 | <goal>jar</goal> |
||
245 | </goals> |
||
246 | </execution> |
||
247 | </executions> |
||
248 | </plugin> |
||
249 | <plugin> |
||
250 | <artifactId>maven-deploy-plugin</artifactId> |
||
251 | <version>2.5</version> |
||
252 | <executions> |
||
253 | <execution> |
||
254 | <id>default-deploy</id> |
||
255 | <phase>deploy</phase> |
||
256 | <goals> |
||
257 | <goal>deploy</goal> |
||
258 | </goals> |
||
259 | </execution> |
||
260 | </executions> |
||
261 | </plugin> |
||
262 | <plugin> |
||
263 | <artifactId>maven-site-plugin</artifactId> |
||
264 | <version>2.0.1</version> |
||
265 | <executions> |
||
266 | <execution> |
||
267 | <id>default-site</id> |
||
268 | <phase>site</phase> |
||
269 | <goals> |
||
270 | <goal>site</goal> |
||
271 | </goals> |
||
272 | <configuration> |
||
273 | <reportPlugins> |
||
274 | <reportPlugin> |
||
275 | <groupId>org.apache.maven.plugins</groupId> |
||
276 | <artifactId>maven-surefire-plugin</artifactId> |
||
277 | <version>2.5</version> |
||
278 | </reportPlugin> |
||
279 | <reportPlugin> |
||
280 | <groupId>org.apache.maven.plugins</groupId> |
||
281 | <artifactId>maven-surefire-report-plugin</artifactId> |
||
282 | <version>2.5</version> |
||
283 | </reportPlugin> |
||
284 | <reportPlugin> |
||
285 | <groupId>org.apache.maven.plugins</groupId> |
||
286 | <artifactId>maven-javadoc-plugin</artifactId> |
||
114 | soliveira | 287 | <version>2.8</version> |
77 | soliveira | 288 | <configuration>...</configuration> |
289 | </reportPlugin> |
||
290 | <reportPlugin> |
||
291 | <groupId>org.apache.maven.plugins</groupId> |
||
292 | <artifactId>maven-project-info-reports-plugin</artifactId> |
||
293 | </reportPlugin> |
||
294 | </reportPlugins> |
||
295 | </configuration> |
||
296 | </execution> |
||
297 | <execution> |
||
298 | <id>default-deploy</id> |
||
299 | <phase>site-deploy</phase> |
||
300 | <goals> |
||
301 | <goal>deploy</goal> |
||
302 | </goals> |
||
303 | <configuration> |
||
304 | <reportPlugins> |
||
305 | <reportPlugin> |
||
306 | <groupId>org.apache.maven.plugins</groupId> |
||
307 | <artifactId>maven-surefire-plugin</artifactId> |
||
308 | <version>2.5</version> |
||
309 | </reportPlugin> |
||
310 | <reportPlugin> |
||
311 | <groupId>org.apache.maven.plugins</groupId> |
||
312 | <artifactId>maven-surefire-report-plugin</artifactId> |
||
313 | <version>2.5</version> |
||
314 | </reportPlugin> |
||
315 | <reportPlugin> |
||
316 | <groupId>org.apache.maven.plugins</groupId> |
||
317 | <artifactId>maven-javadoc-plugin</artifactId> |
||
114 | soliveira | 318 | <version>2.8</version> |
77 | soliveira | 319 | <configuration>...</configuration> |
320 | </reportPlugin> |
||
321 | <reportPlugin> |
||
322 | <groupId>org.apache.maven.plugins</groupId> |
||
323 | <artifactId>maven-project-info-reports-plugin</artifactId> |
||
324 | </reportPlugin> |
||
325 | </reportPlugins> |
||
326 | </configuration> |
||
327 | </execution> |
||
328 | </executions> |
||
329 | <configuration> |
||
330 | <reportPlugins> |
||
331 | <reportPlugin> |
||
332 | <groupId>org.apache.maven.plugins</groupId> |
||
333 | <artifactId>maven-surefire-plugin</artifactId> |
||
334 | <version>2.5</version> |
||
335 | </reportPlugin> |
||
336 | <reportPlugin> |
||
337 | <groupId>org.apache.maven.plugins</groupId> |
||
338 | <artifactId>maven-surefire-report-plugin</artifactId> |
||
339 | <version>2.5</version> |
||
340 | </reportPlugin> |
||
341 | <reportPlugin> |
||
342 | <groupId>org.apache.maven.plugins</groupId> |
||
343 | <artifactId>maven-javadoc-plugin</artifactId> |
||
114 | soliveira | 344 | <version>2.8</version> |
77 | soliveira | 345 | <configuration>...</configuration> |
346 | </reportPlugin> |
||
347 | <reportPlugin> |
||
348 | <groupId>org.apache.maven.plugins</groupId> |
||
349 | <artifactId>maven-project-info-reports-plugin</artifactId> |
||
350 | </reportPlugin> |
||
351 | </reportPlugins> |
||
352 | </configuration> |
||
353 | </plugin> |
||
354 | </plugins> |
||
355 | </build> |
||
29 | soliveira | 356 | <reporting> |
357 | <plugins> |
||
358 | <plugin> |
||
359 | <artifactId>maven-surefire-plugin</artifactId> |
||
77 | soliveira | 360 | <version>2.5</version> |
29 | soliveira | 361 | </plugin> |
362 | <plugin> |
||
363 | <artifactId>maven-surefire-report-plugin</artifactId> |
||
364 | <version>2.5</version> |
||
365 | </plugin> |
||
366 | <plugin> |
||
367 | <artifactId>maven-javadoc-plugin</artifactId> |
||
114 | soliveira | 368 | <version>2.8</version> |
77 | soliveira | 369 | </plugin> |
29 | soliveira | 370 | </plugins> |
371 | </reporting> |
||
33 | soliveira | 372 | <profiles> |
373 | <profile> |
||
374 | <id>release-sign-artifacts</id> |
||
375 | <activation> |
||
376 | <property> |
||
377 | <name>performRelease</name> |
||
378 | <value>true</value> |
||
379 | </property> |
||
380 | </activation> |
||
381 | <build> |
||
382 | <plugins> |
||
383 | <plugin> |
||
384 | <artifactId>maven-gpg-plugin</artifactId> |
||
385 | <executions> |
||
386 | <execution> |
||
387 | <id>sign-artifacts</id> |
||
388 | <phase>verify</phase> |
||
389 | <goals> |
||
390 | <goal>sign</goal> |
||
391 | </goals> |
||
392 | </execution> |
||
393 | </executions> |
||
394 | </plugin> |
||
395 | </plugins> |
||
396 | </build> |
||
397 | </profile> |
||
398 | </profiles> |
||
2 | soliveira | 399 | </project> |