aboutsummaryrefslogtreecommitdiffstats
path: root/ardor3d-distribution
diff options
context:
space:
mode:
authorneothemachine <[email protected]>2013-07-25 21:04:30 +0200
committerneothemachine <[email protected]>2013-07-25 21:04:30 +0200
commite356c4b547af51dde9759c65206807651b75cdb2 (patch)
treee47c2c34960f15fa6a0b123801b30b1182e968a3 /ardor3d-distribution
parent440ee68f5e63ee5527901add2155c009fd84b0d1 (diff)
don't exclude distribution module from build + some POM refactoring
this prevents that the version number isn't bumped when using maven-release-plugin
Diffstat (limited to 'ardor3d-distribution')
-rw-r--r--ardor3d-distribution/pom.xml95
1 files changed, 50 insertions, 45 deletions
diff --git a/ardor3d-distribution/pom.xml b/ardor3d-distribution/pom.xml
index a32f15f..9a1c7d1 100644
--- a/ardor3d-distribution/pom.xml
+++ b/ardor3d-distribution/pom.xml
@@ -22,50 +22,55 @@
</dependency>
</dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <executions>
- <execution>
- <id>distro-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- <configuration>
- <descriptors>
- <descriptor>assembly-all.xml</descriptor>
- <descriptor>assembly-jogl.xml</descriptor>
- <descriptor>assembly-lwjgl.xml</descriptor>
- </descriptors>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <groupId>com.googlecode.mavennatives</groupId>
- <artifactId>maven-nativedependencies-plugin</artifactId>
- <executions>
- <execution>
- <id>unpacknatives</id>
- <goals>
- <goal>copy</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-install-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- </plugins>
- </build>
+ <profiles>
+ <profile>
+ <id>hudson</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>distro-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <configuration>
+ <descriptors>
+ <descriptor>assembly-all.xml</descriptor>
+ <descriptor>assembly-jogl.xml</descriptor>
+ <descriptor>assembly-lwjgl.xml</descriptor>
+ </descriptors>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>com.googlecode.mavennatives</groupId>
+ <artifactId>maven-nativedependencies-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>unpacknatives</id>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-install-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>