Commit 773ec25f0686e47988f81137f4f6ac5f1ffa1163
1 parent
9b0dade9
Exists in
master
add maven reporting stuff
Showing
1 changed file
with
54 additions
and
1 deletions
Show diff stats
pom.xml
... | ... | @@ -22,7 +22,60 @@ |
22 | 22 | </roles> |
23 | 23 | </developer> |
24 | 24 | </developers> |
25 | - | |
25 | + <reporting> | |
26 | + <outputDirectory>${basedir}/target/site</outputDirectory> | |
27 | + <plugins> | |
28 | + <plugin> | |
29 | + <groupId>org.apache.maven.plugins</groupId> | |
30 | + <artifactId>maven-jxr-plugin</artifactId> | |
31 | + <version>2.5</version> | |
32 | + </plugin> | |
33 | + <plugin> | |
34 | + <artifactId>maven-project-info-reports-plugin</artifactId> | |
35 | + <version>2.8</version> | |
36 | + <configuration> | |
37 | + <dependencyLocationsEnabled>false</dependencyLocationsEnabled> | |
38 | + </configuration> | |
39 | + </plugin> | |
40 | + <plugin> | |
41 | + <groupId>org.apache.maven.plugins</groupId> | |
42 | + <artifactId>maven-javadoc-plugin</artifactId> | |
43 | + <version>2.10.3</version> | |
44 | + <configuration> | |
45 | + <quiet>true</quiet> | |
46 | + </configuration> | |
47 | + </plugin> | |
48 | + <plugin> | |
49 | + <groupId>org.apache.maven.plugins</groupId> | |
50 | + <artifactId>maven-surefire-report-plugin</artifactId> | |
51 | + <version>2.18.1</version> | |
52 | + </plugin> | |
53 | + <plugin> | |
54 | + <groupId>org.codehaus.mojo</groupId> | |
55 | + <artifactId>findbugs-maven-plugin</artifactId> | |
56 | + <version>2.5.5</version> | |
57 | + <configuration> | |
58 | + <onlyAnalyze>eu.omp.irap.cassis.-</onlyAnalyze> | |
59 | + </configuration> | |
60 | + </plugin> | |
61 | + <plugin> | |
62 | + <groupId>org.apache.maven.plugins</groupId> | |
63 | + <artifactId>maven-pmd-plugin</artifactId> | |
64 | + <version>3.4</version> | |
65 | + <configuration> | |
66 | + <includes> | |
67 | + <include>**/eu/omp/irap/**</include> | |
68 | + </includes> | |
69 | + </configuration> | |
70 | + </plugin> | |
71 | + <plugin> | |
72 | + <groupId>org.codehaus.mojo</groupId> | |
73 | + <artifactId>cobertura-maven-plugin</artifactId> | |
74 | + <version>2.6</version> | |
75 | + | |
76 | + </plugin> | |
77 | + </plugins> | |
78 | + </reporting> | |
26 | 79 | <!-- The files encoding. --> |
27 | 80 | <properties> |
28 | 81 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ... | ... |