Skip to content

Commit fc01612

Browse files
committed
included maven site generation
1 parent 144ca3a commit fc01612

File tree

1 file changed

+68
-15
lines changed

1 file changed

+68
-15
lines changed

pom.xml

Lines changed: 68 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,74 @@
174174
</execution>
175175
</executions>
176176
</plugin>
177+
<plugin>
178+
<artifactId>maven-site-plugin</artifactId>
179+
<version>3.3</version>
180+
<executions>
181+
<execution>
182+
<id>attach-descriptor</id>
183+
<goals>
184+
<goal>attach-descriptor</goal>
185+
</goals>
186+
</execution>
187+
</executions>
188+
<configuration>
189+
<reportPlugins>
190+
<plugin>
191+
<groupId>org.apache.maven.plugins</groupId>
192+
<artifactId>maven-surefire-report-plugin</artifactId>
193+
<configuration>
194+
<outputDirectory>${project.reporting.outputDirectory}/testresults</outputDirectory>
195+
</configuration>
196+
</plugin>
197+
<plugin>
198+
<groupId>org.apache.maven.plugins</groupId>
199+
<artifactId>maven-javadoc-plugin</artifactId>
200+
<version>2.9.1</version>
201+
<configuration>
202+
<aggregate>true</aggregate>
203+
</configuration>
204+
<reportSets>
205+
<reportSet>
206+
<id>html</id>
207+
<reports>
208+
<report>javadoc</report>
209+
</reports>
210+
</reportSet>
211+
</reportSets>
212+
</plugin>
213+
<plugin>
214+
<groupId>org.apache.maven.plugins</groupId>
215+
<artifactId>maven-project-info-reports-plugin</artifactId>
216+
</plugin>
217+
<plugin>
218+
<groupId>org.apache.maven.plugins</groupId>
219+
<artifactId>maven-jxr-plugin</artifactId>
220+
<configuration>
221+
<aggregate>true</aggregate>
222+
</configuration>
223+
</plugin>
224+
<plugin>
225+
<groupId>org.codehaus.mojo</groupId>
226+
<artifactId>cobertura-maven-plugin</artifactId>
227+
<configuration>
228+
<aggregate>true</aggregate>
229+
<outputDirectory>%{project.reporting.outputDirectory}/cobertura</outputDirectory>
230+
</configuration>
231+
</plugin>
232+
<plugin>
233+
<groupId>org.codehaus.mojo</groupId>
234+
<artifactId>findbugs-maven-plugin</artifactId>
235+
</plugin>
236+
<plugin>
237+
<groupId>org.codehaus.mojo</groupId>
238+
<artifactId>javacc-maven-plugin</artifactId>
239+
<version>2.6</version>
240+
</plugin>
241+
</reportPlugins>
242+
<locales>en</locales>
243+
</configuration>
244+
</plugin>
177245
</plugins>
178246
</build>
179247

@@ -217,20 +285,5 @@
217285
<description>
218286
JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes.
219287
The generated hierarchy can be navigated using the Visitor Pattern.
220-
221-
-----------------
222-
223-
This is a fork of
224-
Project Info: http://jsqlparser.sourceforge.net
225-
Project Lead: Leonardo Francalanci ([email protected]);
226288
</description>
227-
<reporting>
228-
<plugins>
229-
<plugin>
230-
<groupId>org.codehaus.mojo</groupId>
231-
<artifactId>javacc-maven-plugin</artifactId>
232-
<version>2.6</version>
233-
</plugin>
234-
</plugins>
235-
</reporting>
236289
</project>

0 commit comments

Comments
 (0)