Introduce automated builds with Maven
authorMathieu Baudier <mbaudier@argeo.org>
Tue, 8 Jul 2008 12:08:58 +0000 (12:08 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Tue, 8 Jul 2008 12:08:58 +0000 (12:08 +0000)
git-svn-id: https://svn.argeo.org/slc/trunk@1389 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

eclipse/features/org.argeo.slc.ui.launch.feature/pom.xml [new file with mode: 0644]

diff --git a/eclipse/features/org.argeo.slc.ui.launch.feature/pom.xml b/eclipse/features/org.argeo.slc.ui.launch.feature/pom.xml
new file mode 100644 (file)
index 0000000..9597f8e
--- /dev/null
@@ -0,0 +1,52 @@
+<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">
+       <modelVersion>4.0.0</modelVersion>
+       <parent>
+               <groupId>org.argeo.slc</groupId>
+               <artifactId>argeo-slc</artifactId>
+               <version>0.9.4-SNAPSHOT</version>
+               <relativePath>../org.argeo.slc</relativePath>
+       </parent>
+       <artifactId>org.argeo.slc.ui.launch.feature</artifactId>
+       <packaging>pom</packaging>
+       <name>Argeo SLC Launch Eclipse Feature</name>
+       <properties>
+               <eclipse.base>
+                       /home/mbaudier/dev/eclipseBases/eclipse-3.3
+               </eclipse.base>
+       </properties>
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.argeo.slc.maven.plugins</groupId>
+                               <artifactId>maven-argeo-pde-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>argeo-pde-build</id>
+                                               <phase>compile</phase>
+                                               <goals>
+                                                       <goal>build</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <baseLocation>${eclipse.base}</baseLocation>
+                                                       <buildScriptTargets>
+                                                               build.update.jar
+                                                       </buildScriptTargets>
+                                                       <buildScriptProperties>
+                                                               -DjavacSource=1.5 -DjavacTarget=1.5
+                                                       </buildScriptProperties>
+                                               </configuration>
+                                       </execution>
+                                       <execution>
+                                               <id>argeo-pde-clean</id>
+                                               <phase>clean</phase>
+                                               <goals>
+                                                       <goal>clean</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
+               </plugins>
+       </build>
+</project>
\ No newline at end of file