mirror of https://github.com/apache/maven.git
[MNG-2664] add wagon-webdav to the built in providers
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@631468 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b4e41217c6
commit
c2bc33050c
|
@ -58,6 +58,12 @@ public class DefaultArtifactFilterManager implements ArtifactFilterManager
|
||||||
artifacts.add( "maven-reporting-api" );
|
artifacts.add( "maven-reporting-api" );
|
||||||
artifacts.add( "maven-repository-metadata" );
|
artifacts.add( "maven-repository-metadata" );
|
||||||
artifacts.add( "maven-settings" );
|
artifacts.add( "maven-settings" );
|
||||||
|
artifacts.add( "wagon-webdav" );
|
||||||
|
artifacts.add( "commons-httpclient" );
|
||||||
|
artifacts.add( "slide-webdavlib" );
|
||||||
|
artifacts.add( "xml-im-exporter" );
|
||||||
|
artifacts.add( "slf4j-api" );
|
||||||
|
artifacts.add( "slf4j-simple" );
|
||||||
//adding shared/maven-toolchain project here, even though not part of the default
|
//adding shared/maven-toolchain project here, even though not part of the default
|
||||||
//distro yet.
|
//distro yet.
|
||||||
artifacts.add( "maven-toolchain" );
|
artifacts.add( "maven-toolchain" );
|
||||||
|
|
|
@ -60,6 +60,16 @@ under the License.
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.wagon</groupId>
|
||||||
|
<artifactId>wagon-webdav</artifactId>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>commons-logging</groupId>
|
||||||
|
<artifactId>commons-logging</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.maven.wagon</groupId>
|
<groupId>org.apache.maven.wagon</groupId>
|
||||||
<artifactId>wagon-http-lightweight</artifactId>
|
<artifactId>wagon-http-lightweight</artifactId>
|
||||||
|
@ -90,6 +100,24 @@ under the License.
|
||||||
<groupId>commons-httpclient</groupId>
|
<groupId>commons-httpclient</groupId>
|
||||||
<artifactId>commons-httpclient</artifactId>
|
<artifactId>commons-httpclient</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.slf4j</groupId>
|
||||||
|
<artifactId>jcl104-over-slf4j</artifactId>
|
||||||
|
<version>1.5.0</version>
|
||||||
|
<scope>runtime</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.slf4j</groupId>
|
||||||
|
<artifactId>slf4j-api</artifactId>
|
||||||
|
<version>1.5.0</version>
|
||||||
|
<scope>runtime</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.slf4j</groupId>
|
||||||
|
<artifactId>slf4j-simple</artifactId>
|
||||||
|
<version>1.5.0</version>
|
||||||
|
<scope>runtime</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
|
|
5
pom.xml
5
pom.xml
|
@ -252,6 +252,11 @@ under the License.
|
||||||
<artifactId>wagon-file</artifactId>
|
<artifactId>wagon-file</artifactId>
|
||||||
<version>${wagonVersion}</version>
|
<version>${wagonVersion}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.wagon</groupId>
|
||||||
|
<artifactId>wagon-webdav</artifactId>
|
||||||
|
<version>${wagonVersion}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.maven.wagon</groupId>
|
<groupId>org.apache.maven.wagon</groupId>
|
||||||
<artifactId>wagon-http-lightweight</artifactId>
|
<artifactId>wagon-http-lightweight</artifactId>
|
||||||
|
|
Loading…
Reference in New Issue