]> git.argeo.org Git - gpl/argeo-slc.git/blob - eclipse/plugins/org.argeo.slc.pde/pom.xml
First draft of TestResult Detail Implementation
[gpl/argeo-slc.git] / eclipse / plugins / org.argeo.slc.pde / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <groupId>org.argeo.slc.eclipse</groupId>
6 <artifactId>org.argeo.slc.pde</artifactId>
7 <version>0.1.1</version>
8 <packaging>pom</packaging>
9 <name>Argeo PDE Builder</name>
10 <build>
11 <plugins>
12 <plugin>
13 <groupId>org.argeo.slc.maven.plugins</groupId>
14 <artifactId>maven-argeo-pde-plugin</artifactId>
15 <executions>
16 <execution>
17 <id>argeo-pde-build</id>
18 <phase>compile</phase>
19 <goals>
20 <goal>buildProduct</goal>
21 </goals>
22 <configuration>
23 <eclipseBuildDir>
24 ${eclipseBuildDir}
25 </eclipseBuildDir>
26 <eclipseAntArgs></eclipseAntArgs>
27 </configuration>
28 </execution>
29 <execution>
30 <id>argeo-pde-clean</id>
31 <phase>clean</phase>
32 <goals>
33 <goal>clean</goal>
34 </goals>
35 </execution>
36 </executions>
37 </plugin>
38 <plugin>
39 <groupId>org.codehaus.mojo</groupId>
40 <artifactId>build-helper-maven-plugin</artifactId>
41 <executions>
42 <execution>
43 <id>attach-artifacts</id>
44 <phase>package</phase>
45 <goals>
46 <goal>attach-artifact</goal>
47 </goals>
48 <configuration>
49 <artifacts>
50 <artifact>
51 <file>
52 ${project.build.directory}/${project.artifactId}-linux.gtk.x86.zip
53 </file>
54 <type>zip</type>
55 <classifier>
56 linux.gtk.x86
57 </classifier>
58 </artifact>
59 </artifacts>
60 </configuration>
61 </execution>
62 </executions>
63 </plugin>
64 </plugins>
65 </build>
66
67 <distributionManagement>
68 <repository>
69 <uniqueVersion>false</uniqueVersion>
70 <id>argeo-restricted</id>
71 <name>Argeo FOSS Repository</name>
72 <url>file:///var/argeo/maven2/argeo</url>
73 </repository>
74 <snapshotRepository>
75 <uniqueVersion>true</uniqueVersion>
76 <id>argeo-snapshots-restricted</id>
77 <name>Argeo FOSS Snapshots Repository</name>
78 <url>file:///var/argeo/maven2/argeo-snapshots</url>
79 </snapshotRepository>
80 </distributionManagement>
81 <pluginRepositories>
82 <pluginRepository>
83 <id>argeo-plugins</id>
84 <url>http://www.argeo.org/maven/argeo</url>
85 </pluginRepository>
86 </pluginRepositories>
87
88 </project>