|
174 | 174 | </execution> |
175 | 175 | </executions> |
176 | 176 | </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> |
177 | 245 | </plugins> |
178 | 246 | </build> |
179 | 247 |
|
|
217 | 285 | <description> |
218 | 286 | JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes. |
219 | 287 | 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]); |
226 | 288 | </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> |
236 | 289 | </project> |
0 commit comments