comparison findbugs-wtf/pom.xml @ 18:9436877e9b54

added sample maven project
author Dirk Olmes <dirk.olmes@googlemail.com>
date Tue, 17 Jun 2008 12:22:15 +0200
parents
children
comparison
equal deleted inserted replaced
17:5353da33cc57 18:9436877e9b54
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <groupId>de.iobjects</groupId>
6 <artifactId>findbugs-wtf</artifactId>
7 <packaging>jar</packaging>
8 <version>1.0-SNAPSHOT</version>
9 <name>findbugs-wtf</name>
10 <url>http://maven.apache.org</url>
11
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 <version>2.0.2</version>
18 <configuration>
19 <source>1.5</source>
20 <target>1.5</target>
21 </configuration>
22 </plugin>
23 <plugin>
24 <groupId>org.codehaus.mojo</groupId>
25 <artifactId>findbugs-maven-plugin</artifactId>
26 <version>1.2</version>
27 <configuration>
28 <findbugsXmlOutput>true</findbugsXmlOutput>
29 <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
30 <xmlOutput>true</xmlOutput>
31 </configuration>
32 <dependencies>
33 <dependency>
34 <groupId>net.sourceforge.findbugs</groupId>
35 <artifactId>findbugs</artifactId>
36 <version>1.3.2</version>
37 </dependency>
38 </dependencies>
39 </plugin>
40 </plugins>
41 </build>
42
43 <dependencies>
44 <dependency>
45 <groupId>junit</groupId>
46 <artifactId>junit</artifactId>
47 <version>3.8.1</version>
48 <scope>test</scope>
49 </dependency>
50 </dependencies>
51
52 <reporting>
53 <plugins>
54 <plugin>
55 <groupId>org.codehaus.mojo</groupId>
56 <artifactId>findbugs-maven-plugin</artifactId>
57 </plugin>
58 </plugins>
59 </reporting>
60 </project>