diff options
author | neothemachine <[email protected]> | 2013-07-26 18:57:19 +0200 |
---|---|---|
committer | neothemachine <[email protected]> | 2013-07-26 18:57:19 +0200 |
commit | b64cda3d1d5073485e0424fe48cdff22d49a5696 (patch) | |
tree | 49a1c4523cd99d82b89ec6311d88a635207bd097 /ardor3d-distribution | |
parent | 0999fffb8bc362bdb3f340769b611e9b62dce0b2 (diff) |
skipping pom deployment for distribution module by default (except
hudson)
Diffstat (limited to 'ardor3d-distribution')
-rw-r--r-- | ardor3d-distribution/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ardor3d-distribution/pom.xml b/ardor3d-distribution/pom.xml index 9a1c7d1..bf38583 100644 --- a/ardor3d-distribution/pom.xml +++ b/ardor3d-distribution/pom.xml @@ -21,6 +21,18 @@ <version>${project.version}</version> </dependency> </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> <profiles> <profile> @@ -63,6 +75,14 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>false</skip> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <configuration> <skip>true</skip> |