HHH-4501 : use maven wagon-scm provider for release deployment
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17794 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
3f3bb321ca
commit
bacd947d5f
|
@ -283,12 +283,30 @@
|
|||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
|
||||
<extensions>
|
||||
<!-- webdav based deployments (snapshot repo) -->
|
||||
<extension>
|
||||
<groupId>org.apache.maven.wagon</groupId>
|
||||
<artifactId>wagon-webdav</artifactId>
|
||||
<version>1.0-beta-2</version>
|
||||
</extension>
|
||||
<!-- scm based deployments (release repo) -->
|
||||
<extension>
|
||||
<groupId>org.apache.maven.wagon</groupId>
|
||||
<artifactId>wagon-scm</artifactId>
|
||||
<version>1.0-beta-6</version>
|
||||
</extension>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.scm</groupId>
|
||||
<artifactId>maven-scm-manager-plexus</artifactId>
|
||||
<version>1.0</version>
|
||||
</extension>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.scm</groupId>
|
||||
<artifactId>maven-scm-provider-svnexe</artifactId>
|
||||
<version>1.0</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
</build>
|
||||
|
||||
|
@ -440,11 +458,9 @@
|
|||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
|
||||
<!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
|
||||
<!-- todo : replace this with direct svn access once the svnkit providers are available -->
|
||||
<id>repository.jboss.org</id>
|
||||
<url>file://${maven.repository.root}</url>
|
||||
<name>JBoss Release Repository</name>
|
||||
<url>scm:svn:https://svn.jboss.org/repos/repository.jboss.org/maven2</url>
|
||||
</repository>
|
||||
<snapshotRepository>
|
||||
<id>snapshots.jboss.org</id>
|
||||
|
|
Loading…
Reference in New Issue