blob: ece3a0c047ca84a9b9d203a1c078161e14bb3e66 [file] [log] [blame]
Florian Thienelfa641e52011-11-10 00:49:26 +01001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" 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 <artifactId>org.eclipse.vex.xhtml</artifactId>
6 <packaging>eclipse-plugin</packaging>
7 <version>1.0.0-SNAPSHOT</version>
8 <name>Vex XHTML Support</name>
9
10 <parent>
11 <artifactId>org.eclipse.vex-releng</artifactId>
12 <groupId>org.eclipse.vex</groupId>
13 <version>1.0.0-SNAPSHOT</version>
14 <relativePath>../org.eclipse.vex.releng/pom.xml</relativePath>
15 </parent>
16
17 <build>
18 <plugins>
19 <plugin>
20 <groupId>org.codehaus.mojo</groupId>
21 <artifactId>findbugs-maven-plugin</artifactId>
22 <version>2.3.2</version>
23 <configuration>
24 <findbugsXmlOutput>true</findbugsXmlOutput>
25 <failOnError>false</failOnError>
26 </configuration>
27 <executions>
28 <execution>
29 <goals>
30 <goal>check</goal>
31 </goals>
32 </execution>
33 </executions>
34 </plugin>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-pmd-plugin</artifactId>
38 <configuration>
39 <sourceEncoding>utf-8</sourceEncoding>
40 <minimumTokens>100</minimumTokens>
41 <targetJdk>1.5</targetJdk>
42 <format>xml</format>
43 <failOnViolation>false</failOnViolation>
44 </configuration>
45 <executions>
46 <execution>
47 <goals>
48 <goal>cpd-check</goal>
49 </goals>
50 </execution>
51 </executions>
52 </plugin>
53 </plugins>
54 </build>
55
56</project>