diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2011-02-24 12:44:59 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2011-02-24 16:04:33 +0100 |
commit | 8d000bd578b0517b1aeccbae52fc32eace9d6276 (patch) | |
tree | 20d483cb534ff8fc0770cf45b6427ca8fce787b5 /org.eclipse.jgit/pom.xml | |
parent | 2902c7679bde83075370ff3c05e3dbbc6d637e42 (diff) | |
download | jgit-8d000bd578b0517b1aeccbae52fc32eace9d6276.tar.gz jgit-8d000bd578b0517b1aeccbae52fc32eace9d6276.zip |
Fix formatting of pom.xml
Change-Id: I508def09cb2d4e5bd27b412f4ad5d43984388749
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit/pom.xml')
-rw-r--r-- | org.eclipse.jgit/pom.xml | 70 |
1 files changed, 36 insertions, 34 deletions
diff --git a/org.eclipse.jgit/pom.xml b/org.eclipse.jgit/pom.xml index 2b422964d5..ea05ed0e23 100644 --- a/org.eclipse.jgit/pom.xml +++ b/org.eclipse.jgit/pom.xml @@ -141,40 +141,42 @@ </archive> </configuration> </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> - <configuration> - <findbugsXmlOutput>true</findbugsXmlOutput> - <failOnError>false</failOnError> - <excludeFilterFile>findBugs/FindBugsExcludeFilter.xml</excludeFilterFile> - </configuration> - <executions> - <execution> - <goals> - <goal>check</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-pmd-plugin</artifactId> - <configuration> - <sourceEncoding>utf-8</sourceEncoding> - <minimumTokens>100</minimumTokens> - <targetJdk>1.5</targetJdk> - <format>xml</format> - <failOnViolation>false</failOnViolation> - </configuration> - <executions> - <execution> - <goals> - <goal>cpd-check</goal> - </goals> - </execution> - </executions> - </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <configuration> + <findbugsXmlOutput>true</findbugsXmlOutput> + <failOnError>false</failOnError> + <excludeFilterFile>findBugs/FindBugsExcludeFilter.xml</excludeFilterFile> + </configuration> + <executions> + <execution> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <configuration> + <sourceEncoding>utf-8</sourceEncoding> + <minimumTokens>100</minimumTokens> + <targetJdk>1.5</targetJdk> + <format>xml</format> + <failOnViolation>false</failOnViolation> + </configuration> + <executions> + <execution> + <goals> + <goal>cpd-check</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> </project> |