web-dev-qa-db-ja.com

Maven SCMプラグイン:GitSSHプロバイダーが見つかりません

GitでMavenSCMプラグインを使用する際に問題が発生しました。プロバイダーが見つからないと表示されているため、プラグインをまったく機能させることができません。 mvn scm:tagを実行すると、次のエラーが発生します。

[エラー]プロジェクトhello-world-service-minimalでゴールorg.Apache.maven.plugins:maven-scm-plugin:1.9:tag(default-cli)の実行に失敗しました:タグコマンドを実行できません:scmをロードできませんプロバイダー。そのようなプロバイダーはありません: 'git:ssh://[email protected]'。 -> [ヘルプ1]

私のpom.xmlは次のようになります。

<project>
  <modelVersion>4.0.0</modelVersion>

  <groupId>net.REDACTED</groupId>
  <artifactId>hello-world-service-minimal</artifactId>
  <version>1.0.13</version>
  <packaging>pom</packaging>

  <name>hello-world-service</name>

  <properties>
     <lang.Java.source>1.7</lang.Java.source>
     <lang.Java.target>1.7</lang.Java.target>

    <dep.junit>4.11</dep.junit>
  </properties>

  <scm>
     <developerConnection>scm:git:ssh://[email protected]|PROJECT_NAME/hello-world-service-minimal.git</developerConnection>
     <url>scm:git:http://git-eng.REDACTED.com/PROJECT_NAME/hello-world-service-minimal/tree/master</url>
  </scm>

  <distributionManagement>
     <repository>
        <id>dev.release</id>
        <url>file:${project.build.directory}/repository/</url>
     </repository>
  </distributionManagement>

  <build>
      <plugins>
          <plugin>
              <groupId>org.codehaus.mojo</groupId>
              <artifactId>versions-maven-plugin</artifactId>
              <version>2.1</version>
          </plugin>
          <plugin>
              <artifactId>maven-scm-plugin</artifactId>
              <version>1.9</version>
              <configuration>
                  <tag>${project.artifactId}-${project.version}</tag>
              </configuration>
          </plugin>
      </plugins>
  </build>
</project>

誰かがこれを修正する方法を知っていますか?これは私を夢中にさせています。私は自分が何を間違っているのか全く理解できません。

12
Philip Lombardi

<url>タグは通常の閲覧可能なURL用です。あなたには必要だ <connection> 鬼ごっこ (<connection>は読み取りアクセス用です。<developerConnection>は書き込みアクセス用です):

<scm>
  <connection>scm:git:ssh://[email protected]|PROJECT_NAME/hello-world-service-minimal.git</connection>
  <developerConnection>scm:git:ssh://[email protected]|PROJECT_NAME/hello-world-service-minimal.git</developerConnection>
  <url>http://git-eng.REDACTED.com/PROJECT_NAME/hello-world-service-minimal/tree/master</url>
</scm>

詳細については、 Maven POMリファレンス を参照してください。

21
Adam Batkin