diff options
Diffstat (limited to 'ardor3d-distribution/pom.xml')
-rw-r--r-- | ardor3d-distribution/pom.xml | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/ardor3d-distribution/pom.xml b/ardor3d-distribution/pom.xml index 7429808..7f721af 100644 --- a/ardor3d-distribution/pom.xml +++ b/ardor3d-distribution/pom.xml @@ -21,6 +21,26 @@ <version>${project.version}</version> </dependency> </dependencies> + + <!-- TODO adapt when switching to Sonatype OSS + + When switching to Sonatype OSS, the parent pom will use Sonatype OSS repos + in its distributionManagement block. As the zips of this module shouldn't be deployed to + Sonatype/Central but rather to Ardor3D's own repo, the repos have to be overridden here: + + <distributionManagement> + <repository> + <id>Ardor3D-releases</id> + <name>Ardor3D releases</name> + <url>http://ardor3d.com:8081/nexus/content/repositories/releases</url> + </repository> + <snapshotRepository> + <id>Ardor3D-snapshots</id> + <name>Ardor3D snapshots</name> + <url>http://ardor3d.com:8081/nexus/content/repositories/snapshots</url> + </snapshotRepository> + </distributionManagement> + --> <build> <plugins> @@ -43,7 +63,7 @@ </execution> </executions> </plugin> - <plugin> + <plugin> <groupId>com.googlecode.mavennatives</groupId> <artifactId>maven-nativedependencies-plugin</artifactId> <version>0.0.7</version> @@ -56,6 +76,12 @@ </execution> </executions> </plugin> + <plugin> + <artifactId>maven-install-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build> </project> |