Skip to content

Commit e6bede8

Browse files
author
planetlevel
committed
maven reporting test
1 parent 3023231 commit e6bede8

1 file changed

Lines changed: 123 additions & 111 deletions

File tree

pom.xml

Lines changed: 123 additions & 111 deletions
Original file line numberDiff line numberDiff line change
@@ -1,112 +1,124 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>OWASP</groupId>
5-
<artifactId>ESAPI</artifactId>
6-
<packaging>jar</packaging>
7-
<version>1.5</version>
8-
<name>ESAPI</name>
9-
<description>The Enterprise Security API project is an OWASP project to create simple strong security controls for every web platform. Security controls are not simple to build. You can read about the hundreds of pitfalls for unwary devleopers on the OWASP website. By providing developers with a set of strong controls, we aim to eliminate some of the complexity of creating secure web applications. This can result in significant cost savings across the SDLC.</description>
10-
<organization><name>The Open Web Application Security Project (OWASP)</name></organization>
11-
<url>http://www.esapi.org</url>
12-
<dependencies>
13-
14-
<dependency>
15-
<groupId>junit</groupId>
16-
<artifactId>junit</artifactId>
17-
<version>3.8.1</version>
18-
<scope>test</scope>
19-
</dependency>
20-
21-
<dependency>
22-
<groupId>javax.servlet</groupId>
23-
<artifactId>servlet-api</artifactId>
24-
<version>2.4</version>
25-
<scope>compile</scope>
26-
</dependency>
27-
28-
<dependency>
29-
<groupId>javax.servlet</groupId>
30-
<artifactId>jsp-api</artifactId>
31-
<version>2.0</version>
32-
<scope>compile</scope>
33-
</dependency>
34-
35-
<dependency>
36-
<groupId>commons-fileupload</groupId>
37-
<artifactId>commons-fileupload</artifactId>
38-
<version>1.2</version>
39-
<scope>compile</scope>
40-
</dependency>
41-
42-
<dependency>
43-
<groupId>commons-io</groupId>
44-
<artifactId>commons-io</artifactId>
45-
<version>1.3</version>
46-
<scope>test</scope>
47-
</dependency>
48-
49-
<dependency>
50-
<groupId>commons-logging</groupId>
51-
<artifactId>commons-logging</artifactId>
52-
<version>1.1</version>
53-
<scope>compile</scope>
54-
</dependency>
55-
56-
<dependency>
57-
<groupId>OWASP</groupId>
58-
<artifactId>AntiSamy</artifactId>
59-
<version>1.2</version>
60-
<scope>compile</scope>
61-
</dependency>
62-
63-
<dependency>
64-
<groupId>xerces</groupId>
65-
<artifactId>xercesImpl</artifactId>
66-
<version>2.9.1</version>
67-
<scope>compile</scope>
68-
</dependency>
69-
70-
<dependency>
71-
<groupId>nekohtml</groupId>
72-
<artifactId>nekohtml</artifactId>
73-
<version>0.9.5</version>
74-
<scope>compile</scope>
75-
</dependency>
76-
77-
</dependencies>
78-
79-
80-
<build>
81-
<plugins>
82-
<plugin>
83-
<groupId>org.apache.maven.plugins</groupId>
84-
<artifactId>maven-eclipse-plugin</artifactId>
85-
<configuration>
86-
<downloadSources>true</downloadSources>
87-
</configuration>
88-
</plugin>
89-
</plugins>
90-
</build>
91-
92-
93-
<reporting>
94-
<plugins>
95-
<plugin>
96-
<groupId>org.codehaus.mojo</groupId>
97-
<artifactId>findbugs-maven-plugin</artifactId>
98-
<version>1.2</version>
99-
<configuration>
100-
<findbugsXmlOutput>true</findbugsXmlOutput>
101-
<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
102-
<xmlOutput>true</xmlOutput>
103-
<threshold>Low</threshold>
104-
<effort>Max</effort>
105-
<relaxed>false</relaxed>
106-
</configuration>
107-
</plugin>
108-
109-
</plugins>
110-
</reporting>
111-
112-
</project>
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>OWASP</groupId>
5+
<artifactId>ESAPI</artifactId>
6+
<packaging>jar</packaging>
7+
<version>1.5</version>
8+
<name>ESAPI</name>
9+
<description>The Enterprise Security API project is an OWASP project
10+
to create simple strong security controls for every web platform.
11+
Security controls are not simple to build. You can read about the
12+
hundreds of pitfalls for unwary devleopers on the OWASP website. By
13+
providing developers with a set of strong controls, we aim to
14+
eliminate some of the complexity of creating secure web applications.
15+
This can result in significant cost savings across the SDLC.</description>
16+
<organization>
17+
<name>The Open Web Application Security Project (OWASP)</name>
18+
</organization>
19+
<url>http://www.esapi.org</url>
20+
<dependencies>
21+
<dependency>
22+
<groupId>junit</groupId>
23+
<artifactId>junit</artifactId>
24+
<version>3.8.1</version>
25+
<scope>test</scope>
26+
</dependency>
27+
<dependency>
28+
<groupId>javax.servlet</groupId>
29+
<artifactId>servlet-api</artifactId>
30+
<version>2.4</version>
31+
<scope>compile</scope>
32+
</dependency>
33+
<dependency>
34+
<groupId>javax.servlet</groupId>
35+
<artifactId>jsp-api</artifactId>
36+
<version>2.0</version>
37+
<scope>compile</scope>
38+
</dependency>
39+
<dependency>
40+
<groupId>commons-fileupload</groupId>
41+
<artifactId>commons-fileupload</artifactId>
42+
<version>1.2</version>
43+
<scope>compile</scope>
44+
</dependency>
45+
<dependency>
46+
<groupId>commons-io</groupId>
47+
<artifactId>commons-io</artifactId>
48+
<version>1.3</version>
49+
<scope>compile</scope>
50+
</dependency>
51+
<dependency>
52+
<groupId>commons-logging</groupId>
53+
<artifactId>commons-logging</artifactId>
54+
<version>1.1</version>
55+
<scope>compile</scope>
56+
</dependency>
57+
<dependency>
58+
<groupId>OWASP</groupId>
59+
<artifactId>AntiSamy</artifactId>
60+
<version>1.2</version>
61+
<scope>compile</scope>
62+
</dependency>
63+
<dependency>
64+
<groupId>xerces</groupId>
65+
<artifactId>xercesImpl</artifactId>
66+
<version>2.9.1</version>
67+
<scope>compile</scope>
68+
</dependency>
69+
<dependency>
70+
<groupId>nekohtml</groupId>
71+
<artifactId>nekohtml</artifactId>
72+
<version>0.9.5</version>
73+
<scope>compile</scope>
74+
</dependency>
75+
</dependencies>
76+
<build>
77+
<plugins>
78+
<plugin>
79+
<groupId>org.apache.maven.plugins</groupId>
80+
<artifactId>maven-eclipse-plugin</artifactId>
81+
<configuration>
82+
<downloadSources>true</downloadSources>
83+
</configuration>
84+
</plugin>
85+
</plugins>
86+
</build>
87+
<reporting>
88+
<plugins>
89+
<plugin>
90+
<groupId>org.codehaus.mojo</groupId>
91+
<artifactId>findbugs-maven-plugin</artifactId>
92+
<version>1.2</version>
93+
<configuration>
94+
<findbugsXmlOutput>true</findbugsXmlOutput>
95+
<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
96+
<xmlOutput>true</xmlOutput>
97+
<threshold>Low</threshold>
98+
<effort>Max</effort>
99+
<relaxed>false</relaxed>
100+
</configuration>
101+
</plugin>
102+
103+
<plugin>
104+
<artifactId>maven-pmd-plugin</artifactId>
105+
</plugin>
106+
107+
<plugin>
108+
<groupId>org.apache.maven.plugins</groupId>
109+
<artifactId>maven-javadoc-plugin</artifactId>
110+
<configuration>
111+
<doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
112+
<docletArtifact>
113+
<groupId>gr.spinellis</groupId>
114+
<artifactId>UmlGraph</artifactId>
115+
<version>4.4</version>
116+
</docletArtifact>
117+
<additionalparam> -inferrel -inferdep -quiet -hide java.*
118+
-collpackages java.util.* -qualify -postfixpackage -nodefontsize 9
119+
-nodefontpackagesize 7 </additionalparam>
120+
</configuration>
121+
</plugin>
122+
</plugins>
123+
</reporting>
124+
</project>

0 commit comments

Comments
 (0)