0

これは私を夢中にさせています....私は、主題についてすでに行われた投稿を読み、再読し、pomファイルを何らかの方法で台無しにしましたが、まったく変更はありません.... jcenterにデプロイできません。 ...

私は非常に単純なpomファイル(によって作成されたmvn)から始めましたが、今ではより複雑になっていますが、それでも...アップロードはありません....ここのコメントが言ったことを統合しましたが、それでも....

ところで、ユーザー名と API キーを使用して settings.xml ファイルをセットアップしました....bintray サイトに表示されているのとまったく同じです...ソース全体は、https://github.com/nohkumado/ipx800Control.gitの下の github で入手できます。

実際のpomファイルは次のとおりです。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
 <groupId>nohkumado</groupId>
 <artifactId>ipx800control</artifactId>
 <packaging>jar</packaging>
 <version>0.1.6</version>
 <name>IPX 800 support library</name>
 <url>https://github.com/nohkumado/ipx800Control</url>
 <inceptionYear>2015</inceptionYear> 
 <organization>
  <name>Noh Kuma Do</name>
 </organization>

 <description>ipx800control is a class that interfaces over local net with an Ipx800v3 domotic controller.</description>

<licenses>
 <license>
    <name>General Public License (GPL) version 3.0</name>
    <url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
 </license>
</licenses>

<developers>
  <developer>
     <name>Nohkumado</name>
     <email>nokumado@gmail.com</email>
     <roles>
        <role>Lead Developer</role>
     </roles>
  </developer>
</developers>

<dependencies>
 <dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
  <version>3.8.1</version>
  <scope>test</scope>
  </dependency>
  <dependency>
  <groupId>org.apache.httpcomponents</groupId>
  <artifactId>httpclient</artifactId>
  <version>4.0-alpha4</version>
  </dependency>
  </dependencies>

  <issueManagement>
   <system>GitHub Issue Tracker</system>
    <url>https://github.com/nohkumado/ipx800Control/issues</url>
  </issueManagement>

  <distributionManagement>
   <repository>
     <id>ipx800Control</id>
         <url>https://api.bintray.com/content/nokumado/maven/ipx800Control;publish=1</url>
     </repository>
    <snapshotRepository>
      <id>ipx800Control</id>
     <url>https://api.bintray.com/content/nokumado/maven/ipx800Control;publish=1</url>
     <!--url>https://api.bintray.com/content/nokumado/maven/ipx800Control/snapshots;publish=1</url-->
   </snapshotRepository>
  </distributionManagement>

 <scm>
   <connection>
       scm:git:git@github.com:nohkumado/ipx800Control.git
    </connection>
     <url>scm:git:git@github.com:nohkumado/ipx800Control.git</url>
      <developerConnection>
        scm:git:git@github.com:nohkumado/ipx800Control.git
      </developerConnection>
    <tag>HEAD</tag>
</scm>


<build>
 <plugins>
   <plugin>
   <artifactId>maven-release-plugin</artifactId>
    <version>2.4.1</version>
   <configuration>
    <useReleaseProfile>false</useReleaseProfile>
    <releaseProfiles>release</releaseProfiles>
   <autoVersionSubmodules>true</autoVersionSubmodules>
 </configuration>
  </plugin>
 </plugins>
</build>

  <profiles>
    <profile>
      <id>release</id>
      <build>
    <plugins>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
        <id>attach-sources</id>
        <goals>
          <goal>jar</goal>
        </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <executions>
          <execution>
          <id>attach-javadocs</id>
          <goals>
        <goal>jar</goal>
          </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
      </build>
    </profile>
  </profiles>

</project>

mvn deploy ログのログは次のとおりです。

[INFO] Scanning for projects...
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building IPX 800 support library 0.1.3-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-resources-plugin:2.3:resources (default-resources) @ ipx800control ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/devel/java/ipx800Control/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.2:compile (default-compile) @ ipx800control ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-resources-plugin:2.3:testResources (default-testResources) @ ipx800control ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/devel/java/ipx800Control/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.2:testCompile (default-testCompile) @ ipx800control ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.17:test (default-test) @ ipx800control ---
[INFO] No tests to run.
[INFO] 
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ ipx800control ---
[INFO] 
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ ipx800control ---
[INFO] Installing /home/devel/java/ipx800Control/target/ipx800control-0.1.3-SNAPSHOT.jar to /home/devel/.m2/repository/nohkumado/ipx800control/0.1.3-SNAPSHOT/ipx800control-0.1.3-SNAPSHOT.jar
[INFO] Installing /home/devel/java/ipx800Control/pom.xml to /home/devel/.m2/repository/nohkumado/ipx800control/0.1.3-SNAPSHOT/ipx800control-0.1.3-SNAPSHOT.pom
[INFO] 
[INFO] --- maven-deploy-plugin:2.7:deploy (default-deploy) @    ipx800control ---
   Downloading:    https://api.bintray.com/content/nokumado/maven/ipx800Control;publish=1/nohkumado/ipx800control/0.1.3-SNAPSHOT/maven-metadata.xml

Uploading:      https://api.bintray.com/content/nokumado/maven/ipx800Control;publish=1/nohkumado/ipx800control/0.1.3-SNAPSHOT/ipx800control-0.1.3-20151022.200837-1.jar
   2/8 KB   
  4/8 KB   
  6/8 KB   
  8/8 KB   

 Uploading:  https://api.bintray.com/content/nokumado/maven/ipx800Control;publish=1/nohkumado/ipx800control/0.1.3-SNAPSHOT/ipx800control-0.1.3-20151022.200837-1.pom
  2/4 KB   
  4/4 KB   

 [INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 9.757 s
[INFO] Finished at: 2015-10-22T22:08:39+02:00
[INFO] Final Memory: 16M/217M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project ipx800control: Failed to deploy artifacts: Could not transfer artifact nohkumado:ipx800control:jar:0.1.3-20151022.200837-1 from/to ipx800Control (https://api.bintray.com/content/nokumado/maven/ipx800Control;publish=1): Failed to transfer file: https://api.bintray.com/content/nokumado/maven/ipx800Control;publish=1/nohkumado/ipx800control/0.1.3-SNAPSHOT/ipx800control-0.1.3-20151022.200837-1.jar. Return code is: 401, ReasonPhrase: Unauthorized. -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

~/.m2/repository の内容 (私には有効に見えます...)

insgesamt 96
-rw-r--r-- 1 devel devel  8155 Okt 21 10:06 ipx800control-0.1.3-SNAPSHOT.jar
-rw-r--r-- 1 devel devel 53875 Okt 18 01:52 ipx800control-0.1.3-SNAPSHOT-javadoc.jar
-rw-r--r-- 1 devel devel  3311 Okt 18 01:37 ipx800control-0.1.3-SNAPSHOT.pom
-rw-r--r-- 1 devel devel  8594 Okt 18 01:52 ipx800control-0.1.3-SNAPSHOT-sources.jar
-rw-r--r-- 1 devel devel   772 Okt 22 22:08 maven-metadata-ipx800Control.xml
-rw-r--r-- 1 devel devel  1118 Okt 22 22:08 maven-metadata-local.xml
-rw-r--r-- 1 devel devel   290 Okt 22 22:08 _remote.repositories
-rw-r--r-- 1 devel devel   193 Okt 22 22:08 resolver-status.properties

だから私はまだ立ち往生しています.....そして、ここで何がうまくいかないのかについてはまだ頭が痛いです....サイトにjarを手動でアップロードしようとしました(v0.0.2)、そしてそれはうまくいきました...ところで私が0.0.version から 0.version に切り替えたところ、うまくいくように見えました...

どんな助けでも大歓迎です!

4

2 に答える 2

-1

まず、@JBaruch が指摘したように、Bintray はリリースのみを処理するため、スナップショットをアップロードする必要さえありません。

Maven から Bintray へのリリースを問題なく行うことができます。

<distributionManagement>のPOMは次のようになります。

<distributionManagement>
    <repository>
      <id>bintray</id>
      <name>Bintray</name>
      <!-- publish=1 or 0 doesn't really matter, you can publish 
           through Bintray UI later if you set publish=0 -->
      <url>https://api.bintray.com/maven/<my username>/maven/<my Bintray package>/;publish=0</url>
    </repository>
</distributionManagement>

mysettings.xmlでは、資格情報は次のように指定されています。

<server>
  <id>bintray</id>
  <username><my username></username>
  <password><my api key></password> <!-- NOT my Bintray password -->
</server>

これは、Bintray の Maven リポジトリに Bintray パッケージを作成済みであることを前提としています。

セクション以外に<repository>(POM にも にも) タグを定義していません。settings.xml<distributionManagement>

于 2015-10-17T17:29:11.010 に答える