我开始练习nexus并且我有示例java代码。 在命令提示符下,我转到项目路径并运行" mvn clean deploy"
<servers>
<server>
<id>nexus</id>
<username>admin</username>
<password>admin</password>
</server>
settings.xml中的
凭据是正确的。 下面的代码已添加到POM.xml文件中。
<distributionManagement>
<repository>
<id>nexus</id>
<name>Java Releases Nexus Repository</name>
<url>http://localhost:8018/repository/maven-releases</url>
</repository>
<snapshotRepository>
<id>nexus</id>
<name>Java Snapshot Nexus Repository</name>
<url>http://localhost:8018/repository/maven-snapshots</url>
</snapshotRepository>
</distributionManagement>
但仍显示401,未经授权。任何人都可以帮助我。