|
161 | 161 | <configuration> |
162 | 162 | <skip>false</skip> |
163 | 163 | <quiet>true</quiet> |
164 | | - <!--<dependencyDetailsEnabled>false</dependencyDetailsEnabled> |
165 | | - <dependencyLocationsEnabled>false</dependencyLocationsEnabled>--> |
166 | 164 | </configuration> |
167 | 165 | </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> --> |
195 | 166 | <plugin> |
196 | 167 | <groupId>org.apache.maven.plugins</groupId> |
197 | 168 | <artifactId>maven-war-plugin</artifactId> |
|
220 | 191 | </execution> |
221 | 192 | </executions> |
222 | 193 | </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> |
223 | 204 | </plugins> |
224 | 205 | <pluginManagement> |
225 | 206 | <plugins> |
|
241 | 222 | </plugins> |
242 | 223 | </pluginManagement> |
243 | 224 | </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> |
244 | 239 | </project> |
0 commit comments