sm2eclipseからsiteを実行するとエラーが。
[ERROR] BUILD FAILURE maven2sample:maven2sample:jar:0.0.1-SNAPSHOT ( task-segment: [site] ) [INFO] ---------------------------------------------------------------------------- [INFO] Internal error in the plugin manager executing goal 'org.apache.maven.plugins:maven-project-info-reports-plugin:2.1:plugin-management': Unable to find the mojo 'org.apache.maven.plugins:maven-project-info-reports-plugin:2.1:plugin-management' in the plugin 'org.apache.maven.plugins:maven-project-info-reports-plugin' [INFO] ----------------------------------------------------------------------------原因不明。助けてーだったんですが、以下の設定をpom.xmlから消すとうまくいく。
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav</artifactId>
<version>1.0-beta-2</version>
</extension>
</extensions>
</build>
意味がわからんけど、plugin同士の相性?




コメントする