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