Spring Tools Suiteでビルドしたspringbootプロジェクトをビルドしようとしています。 $mvn spring-boot:run
を実行すると次のエラーが表示されます
Downloading: https://repo.maven.Apache.org/maven2/org/codehaus/mojo/maven-metadata.xml
Downloading: https://repo.maven.Apache.org/maven2/org/Apache/maven/plugins/maven-metadata.xml
Downloaded: https://repo.maven.Apache.org/maven2/org/Apache/maven/plugins/maven-metadata.xml (13 KB at 14.0 KB/sec)
Downloaded: https://repo.maven.Apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (20 KB at 21.8 KB/sec)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.032 s
[INFO] Finished at: 2015-06-15T17:46:50-04:00
[INFO] Final Memory: 11M/123M
[INFO] ------------------------------------------------------------------------
[ERROR] No plugin found for prefix 'spring-boot' in the current project and in the plugin groups [org.Apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (/Users/admin/.m2/repository), central (https://repo.maven.Apache.org/maven2)] -> [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/NoPluginFoundForPrefixException`
私のpom.xmlプラグインはこちら
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<arguments>
<argument>--spring.profiles.active=dev</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
上記のjhipsterプラグインを試してみましたが、エラーは変わりません。
アプリケーションにSpring Bootを使用している場合、追加することを忘れて
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.2.7.RELEASE</version>
</parent>
この問題が発生し、これらの行が欠落する可能性があります
<repositories>
<repository>
<id>spring-releases</id>
<url>https://repo.spring.io/libs-release</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-releases</id>
<url>https://repo.spring.io/libs-release</url>
</pluginRepository>
</pluginRepositories>
実行している場合
mvn spring-boot:run
コマンドラインから、pom.xmlファイルを含むディレクトリにいることを確認してください。そうしないと、現在のプロジェクトおよびプラグイングループでプレフィックス 'spring-boot'のプラグインが見つかりませんエラーが発生します。
以下をpomに追加してコンパイルしてみてください。
<repositories>
<repository>
<id>spring-snapshots</id>
<url>http://repo.spring.io/libs-snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-snapshots</id>
<url>http://repo.spring.io/libs-snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
使用したくない場合
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>(...)</version>
</parent>
親POMとして、使用できます
mvn org.springframework.boot:spring-boot-maven-plugin:run
代わりにコマンド。
$ mvn spring-boot:run
ファイルがあるフォルダーからpom.xml
を実行し、この回答を参照してください https://stackoverflow.com/a/33602837/4918021
私の場合、同じエラーが発生していましたが、原因は、使用しているコマンドにタイプミスがあったことです。 spring-bootの代わりにmvn springboot:runを使用していました。適切なコマンドを使用することで解決しました。
私の場合、ビルドにspring-boot-maven-pluginを追加すると解決しました
<build>
<finalName>mysample-web</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
<version>1.2.1.RELEASE</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
Mvn spring-boot:runコマンドを使用する場合、pom.xmlがディレクトリに存在することを確認してください。 pom.xmlファイルに何かを追加する必要はありません。