maven3 deploy执行报错

在maven2下面编译运行非常正常的项目,到了maven3下面做release:deploy的时候报如下错误:

[INFO] [INFO] ------------------------------------------------------------------------
[INFO] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project xxx: Failed to deploy artifacts/metadata: No connector available to access repository my_repository (scp://maven@build01.mysite.com/home/maven/repo) of type default using the available factories WagonRepositoryConnectorFactory -> [Help 1]
[INFO] [ERROR] 

原来在maven3里面,必须加载适当的extension 才能完成deploy.

 

我的distribution repository定义如下:

<distributionManagement>
		<repository>
			<id>my_repository</id>
			<name>Repository</name>
			<url>scp://maven@build01.mysite.com/home/maven/repo</url>
		</repository>
	</distributionManagement>

 我使用了scp的部署方式,那么就应当增加如下的配置:

		</plugins>
		<extensions>
			<extension>
				<groupId>org.apache.maven.wagon</groupId>
				<artifactId>wagon-ssh</artifactId>
				<version>2.4</version>
			</extension>
		</extensions>
	</build>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值