Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 1 | <?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.core</artifactId> |
| 6 | <packaging>eclipse-plugin</packaging> |
Florian Thienel | 1af74b9 | 2012-09-23 11:47:58 +0200 | [diff] [blame] | 7 | <version>1.1.0-SNAPSHOT</version> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 8 | <name>Vex Core</name> |
| 9 | |
| 10 | <parent> |
| 11 | <artifactId>org.eclipse.vex-releng</artifactId> |
| 12 | <groupId>org.eclipse.vex</groupId> |
Florian Thienel | 1af74b9 | 2012-09-23 11:47:58 +0200 | [diff] [blame] | 13 | <version>1.1.0-SNAPSHOT</version> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 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> |