0

$mvn deployリンクされたアーティファクトを JCenter にデプロイすると、このエラーが発生しますReturn code is: 401, ReasonPhrase: Unauthorized.

これを引き起こしている原因と、これを修正する方法は?

4

2 に答える 2

0

pom ファイルが表示されない場合は、SNAPSHOT を Bintray にアップロードしようとしているに違いありません。Bintray は配布プラットフォームであり、リリースのみを目的としています。

JCenter に含まれているパッケージのスナップショットには、oss.jfrog.org を使用してください。

于 2015-10-29T18:08:28.837 に答える
0

解決策は、アーティファクトの pom.xml にこれを含めることです

<distributionManagement>
    <snapshotRepository>
        <id>bintray-yourusername-maven-yourpackagename</id> <!-- same id with the server in settings.xml -->
        <name>oss-jfrog-artifactory-snapshots</name>
        <url>http://oss.jfrog.org/artifactory/oss-snapshot-local</url>
    </snapshotRepository>
</distributionManagement>

そして、これをsettings.xmlに入れます

<?xml version="1.0" encoding="UTF-8" ?>
<settings xsi:schemaLocation='http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd'
          xmlns='http://maven.apache.org/SETTINGS/1.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
   <servers>
        <server>
            <id>bintray-yourusername-maven-yourpackagename</id> <!-- same id with the snapshotRepository -->
            <username>yourusername</username>
            <password>your_api_key</password>
        </server>
    </servers>
    <profiles>
        <profile>
            <repositories>
                <repository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>central</id>
                    <name>bintray</name>
                    <url>http://jcenter.bintray.com</url>
                </repository>
            </repositories>
            <pluginRepositories>
                <pluginRepository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>central</id>
                    <name>bintray-plugins</name>
                    <url>http://jcenter.bintray.com</url>
                </pluginRepository>
            </pluginRepositories>
            <id>bintray</id>
        </profile>
    </profiles>
    <activeProfiles>
        <activeProfile>bintray</activeProfile>
    </activeProfiles>
</settings>
于 2015-10-27T04:17:44.463 に答える