mirror of https://github.com/apache/archiva.git
Disable redback snapshot repo for releases and manage site plugin to the same version across projects
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@983636 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
96309bc8b9
commit
a96167a55d
|
@ -46,17 +46,6 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
<build>
|
|
||||||
<pluginManagement>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-site-plugin</artifactId>
|
|
||||||
<version>2.1</version>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</pluginManagement>
|
|
||||||
</build>
|
|
||||||
<reporting>
|
<reporting>
|
||||||
<plugins>
|
<plugins>
|
||||||
<!-- No need for the standard project reports -->
|
<!-- No need for the standard project reports -->
|
||||||
|
|
11
pom.xml
11
pom.xml
|
@ -195,6 +195,11 @@
|
||||||
<jdkLevel>1.5</jdkLevel>
|
<jdkLevel>1.5</jdkLevel>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<version>2.1</version>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
</build>
|
</build>
|
||||||
|
@ -1244,6 +1249,12 @@
|
||||||
<repository>
|
<repository>
|
||||||
<id>redback</id>
|
<id>redback</id>
|
||||||
<url>http://snapshots.repository.codehaus.org/</url>
|
<url>http://snapshots.repository.codehaus.org/</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in New Issue