問題点
java言語の学習に励んでおります。
分野は『静的コード解析』でございます。
使用中のツールは、『SpotBugs』と『Checkstyle』であります。ビルドとして『Maven』も併用いたしております。
問題は、エラーの発生からプログラムが正常に動作しないことでございます。したがって、正常に動作する方法をお教え願います。ご回答、よろしくお願い申し上げます。
また、参考にいたしましたサイトや文書が複数とございます。末尾に記載いたしました。
詳細情報
下記は、ターミナル上に発生したエラーと、私が作成いたしましたpomファイルでございます。
terminal
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-site-plugin:3.3:site (default-site) on project second: Execution default-site of goal org.apache.maven.plugins:maven-site-plugin:3.3:site failed: A required class was missing while executing org.apache.maven.plugins:maven-site-plugin:3.3:site: org/apache/maven/doxia/siterenderer/DocumentContent
pom.xml
<project> <modelVersion>4.0.0</modelVersion> <groupId>second.testProbability</groupId> <artifactId>second</artifactId> <version>1.0.0</version> <properties> <maven.compiler.target>8</maven.compiler.target> <maven.compiler.source>8</maven.compiler.source> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>4.7.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.1.2</version> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>10.2</version> </dependency> </dependencies> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>4.7.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.1.2</version> <reportSets> <reportSet> <reports> <report>checkstyle</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <dependencies></dependencies> </project>
参考
スッキリわかるJava入門 実践編 第3版
spotbugsの公式サイト
MVN Repository
ご協力くださいました有識者様
まだ回答がついていません
会員登録して回答してみよう