]> git.argeo.org Git - lgpl/argeo-commons.git/blob - eclipse/plugins/pom.xml
Remove Qooxdoo API generation
[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"
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.commons</groupId>
6 <version>0.2.1-SNAPSHOT</version>
7 <artifactId>eclipse</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.commons.eclipse</groupId>
11 <artifactId>plugins</artifactId>
12 <name>Commons Eclipse plugins</name>
13 <packaging>pom</packaging>
14 <modules>
15 <module>org.argeo.eclipse.ui</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 </includes>
25 </resource>
26 </resources>
27 <plugins>
28 <plugin>
29 <artifactId>maven-jar-plugin</artifactId>
30 <configuration>
31 <archive>
32 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
33 </archive>
34 </configuration>
35 </plugin>
36 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-compiler-plugin</artifactId>
39 </plugin>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-source-plugin</artifactId>
43 <executions>
44 <execution>
45 <id>attach-sources</id>
46 <phase>package</phase>
47 <goals>
48 <goal>jar</goal>
49 </goals>
50 </execution>
51 </executions>
52 </plugin>
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-surefire-plugin</artifactId>
56 </plugin>
57 </plugins>
58 </build>
59 </project>