diff options
author | Uwe Stieber | 2012-03-09 09:38:55 +0000 |
---|---|---|
committer | Uwe Stieber | 2012-03-09 09:38:55 +0000 |
commit | 6b48a912136e51eeb93170f1b70f730dd90e1e4a (patch) | |
tree | c01e86985fd83fe329df3334be44abc324efb0d2 /admin/pom-build.xml | |
parent | c1aee45c863a6a9f1b49d502286a43b6738be44f (diff) | |
download | org.eclipse.tcf-6b48a912136e51eeb93170f1b70f730dd90e1e4a.tar.gz org.eclipse.tcf-6b48a912136e51eeb93170f1b70f730dd90e1e4a.tar.xz org.eclipse.tcf-6b48a912136e51eeb93170f1b70f730dd90e1e4a.zip |
Maven: Rework build files to cleanup structure and increase maintainability
Diffstat (limited to 'admin/pom-build.xml')
-rw-r--r-- | admin/pom-build.xml | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/admin/pom-build.xml b/admin/pom-build.xml new file mode 100644 index 000000000..55b38a550 --- /dev/null +++ b/admin/pom-build.xml @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" + xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.eclipse.tcf</groupId> + <artifactId>org.eclipse.tcf.maven-config</artifactId> + <version>1.0.0-SNAPSHOT</version> + <relativePath>pom-config.xml</relativePath> + </parent> + + <groupId>org.eclipse.tcf</groupId> + <artifactId>org.eclipse.tcf.maven-build</artifactId> + <version>1.0.0-SNAPSHOT</version> + <packaging>pom</packaging> + <name>TCF and Target Explorer, Maven Build Master</name> + + <build> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-maven-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + </plugin> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-source-plugin</artifactId> + </plugin> + </plugins> + </build> + + <profiles> + <profile> + <id>findbugs</id> + + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + </plugin> + </plugins> + </build> + </profile> + + <profile> + <id>codeCoverage</id> + + <build> + <plugins> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + </plugin> + </plugins> + </build> + </profile> + </profiles> +</project> |