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