]> git.argeo.org Git - lgpl/argeo-commons.git/blob - eclipse/plugins/pom.xml
[maven-release-plugin] prepare for next development iteration
[lgpl/argeo-commons.git] / eclipse / plugins / pom.xml
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 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.commons</groupId>
5 <version>0.2.2-SNAPSHOT</version>
6 <artifactId>eclipse</artifactId>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.commons.eclipse</groupId>
10 <artifactId>plugins</artifactId>
11 <name>Commons Eclipse plugins</name>
12 <packaging>pom</packaging>
13 <modules>
14 <module>org.argeo.eclipse.ui</module>
15 </modules>
16 <build>
17 <resources>
18 <resource>
19 <directory>.</directory>
20 <includes>
21 <include>plugin.xml</include>
22 <include>META-INF/**</include>
23 </includes>
24 </resource>
25 </resources>
26 <plugins>
27 <plugin>
28 <artifactId>maven-jar-plugin</artifactId>
29 <configuration>
30 <archive>
31 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
32 </archive>
33 </configuration>
34 </plugin>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
38 </plugin>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-source-plugin</artifactId>
42 <executions>
43 <execution>
44 <id>attach-sources</id>
45 <phase>package</phase>
46 <goals>
47 <goal>jar</goal>
48 </goals>
49 </execution>
50 </executions>
51 </plugin>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-surefire-plugin</artifactId>
55 </plugin>
56 </plugins>
57 </build>
58 </project>