Skip to content

Commit a3fd2a4

Browse files
author
David Baum
committed
add findbugs to maven project report
1 parent 921aa16 commit a3fd2a4

1 file changed

Lines changed: 24 additions & 29 deletions

File tree

  • generator2/org.getaviz.generator

generator2/org.getaviz.generator/pom.xml

Lines changed: 24 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -161,37 +161,8 @@
161161
<configuration>
162162
<skip>false</skip>
163163
<quiet>true</quiet>
164-
<!--<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
165-
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>-->
166164
</configuration>
167165
</plugin>
168-
<!-- <plugin> -->
169-
<!-- <groupId>org.codehaus.mojo</groupId> -->
170-
<!-- <artifactId>exec-maven-plugin</artifactId> -->
171-
<!-- <version>1.4.0</version> -->
172-
<!-- <executions> -->
173-
<!-- <execution> -->
174-
<!-- <phase>deploy</phase> -->
175-
<!-- <goals> -->
176-
<!-- <goal>java</goal> -->
177-
<!-- </goals> -->
178-
<!-- </execution> -->
179-
<!-- </executions> -->
180-
<!-- <configuration> -->
181-
<!-- <executable>java</executable> -->
182-
<!-- <includeProjectDependencies>true</includeProjectDependencies> -->
183-
<!-- <includePluginDependencies>true</includePluginDependencies> -->
184-
<!-- <arguments> -->
185-
<!-- uncomment to increase java heap size -->
186-
<!-- <argument>-Xmx8g</argument> -->
187-
<!-- <argument>-classpath</argument> -->
188-
<!-- <classpath /> -->
189-
<!-- <argument>org.getaviz.generator.Generator</argument> -->
190-
<!-- <argument>-p</argument> -->
191-
<!-- <argument>runtimeProject=${project.basedir}</argument> -->
192-
<!-- </arguments> -->
193-
<!-- </configuration> -->
194-
<!-- </plugin> -->
195166
<plugin>
196167
<groupId>org.apache.maven.plugins</groupId>
197168
<artifactId>maven-war-plugin</artifactId>
@@ -220,6 +191,16 @@
220191
</execution>
221192
</executions>
222193
</plugin>
194+
<plugin>
195+
<groupId>org.apache.maven.plugins</groupId>
196+
<artifactId>maven-site-plugin</artifactId>
197+
<version>3.7.1</version>
198+
</plugin>
199+
<plugin>
200+
<groupId>org.apache.maven.plugins</groupId>
201+
<artifactId>maven-project-info-reports-plugin</artifactId>
202+
<version>3.0.0</version>
203+
</plugin>
223204
</plugins>
224205
<pluginManagement>
225206
<plugins>
@@ -241,4 +222,18 @@
241222
</plugins>
242223
</pluginManagement>
243224
</build>
225+
<reporting>
226+
<plugins>
227+
<plugin>
228+
<groupId>com.github.spotbugs</groupId>
229+
<artifactId>spotbugs-maven-plugin</artifactId>
230+
<version>3.1.12.2</version>
231+
<configuration>
232+
<xmlOutput>true</xmlOutput>
233+
<!-- Optional directory to put findbugs xdoc xml report -->
234+
<xmlOutputDirectory>target/site</xmlOutputDirectory>
235+
</configuration>
236+
</plugin>
237+
</plugins>
238+
</reporting>
244239
</project>

0 commit comments

Comments
 (0)