我祝福,并希望得到任何帮助。 我的建筑机器不能再使用ma子释放 p。 当我试图在从双方部署期间失败时。 然而,这一机器可以使用标准部署方法释放储存库(存放在与中间商有联系的同一机器上)。
- release:perform works from my desktop
- release:perform fails on my build machine with auth error
- deploy to a snapshot or release repository works from desktop and build machine
- release:perform fails from my build machine with the following:
www.un.org/Depts/DGACM/index_spanish.htm 不可逆转地部署艺术品: 认证失败: Cannot有联系。 理由: 取消
这两台机器都是窗户,而我预想的是,由于幻觉和正常的部署工程,这台机器都是科索沃。 我对下面没有uck。 任何建议都会受到欢迎。 增 编
Peter
www.un.org/Depts/DGACM/index_spanish.htm 页: 1
- setting.xml (identical)
- Path (different, but no impact when I made identical)
- Local Repositories (tried clearing each to see if that was it - no impact)
- maven installations - same
www.un.org/Depts/DGACM/index_spanish.htm 指挥——通常由胡德森管理,但由手头管理。
mvn.bat -DdevelopmentVersion=1.0.16 -DreleaseVersion=1.0.15 -DscmCommentPrefix=SCM-1 release:clean clean --batch-mode
mvn.bat -DdevelopmentVersion=1.0.16 -DreleaseVersion=1.0.15 -DscmCommentPrefix=SCM-1 release:prepare --batch-mode
mvn.bat -DdevelopmentVersion=1.0.16 -DreleaseVersion=1.0.15 -DscmCommentPrefix=SCM-1 deploy --batch-mode
mvn.bat -DdevelopmentVersion=1.0.16 -DreleaseVersion=1.0.15 -DscmCommentPrefix=SCM-1 release:perform --batch-mode
<>POM
<groupId>com.releng.experiment</groupId>
<artifactId>simplejar</artifactId>
<packaging>jar</packaging>
<version>1.0.16-SNAPSHOT</version>
<name>simplejar</name>
<url>http://maven.apache.org</url>
...
<scm>
<url>http://svn-da/svn/darepos/users/pkahn/simplejar/trunk</url>
<developerConnection>scm:svn:http://svn-da/svn/darepos/users/pkahn/simplejar/trunk</developerConnection>
</scm>
<build>
<finalName>${project.artifactId}-${project.version}-${buildNumber}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>daeng</id>
<name>DA Engineering</name>
<url>scp://mavenrepo/opt/sonatype-work/nexus/storage/daeng/</url>
</repository>
<snapshotRepository>
<id>daeng-snap</id>
<name>DA Engineering</name>
<url>scp://mavenrepo/opt/sonatype-work/nexus/storage/daeng-snap/</url>
</snapshotRepository>
</distributionManagement>
</project>