diff options
author | Uwe Stieber | 2012-03-09 10:26:01 +0000 |
---|---|---|
committer | Uwe Stieber | 2012-03-09 10:26:01 +0000 |
commit | c1484e8b4c49c502429fb9e4a7c9180d1141fcea (patch) | |
tree | e44c705187485ef85d45e775d1d04683177c1b7a /admin | |
parent | 6b48a912136e51eeb93170f1b70f730dd90e1e4a (diff) | |
download | org.eclipse.tcf-c1484e8b4c49c502429fb9e4a7c9180d1141fcea.tar.gz org.eclipse.tcf-c1484e8b4c49c502429fb9e4a7c9180d1141fcea.tar.xz org.eclipse.tcf-c1484e8b4c49c502429fb9e4a7c9180d1141fcea.zip |
Maven: Rework test maven files
Diffstat (limited to 'admin')
-rw-r--r-- | admin/pom-build.xml | 2 | ||||
-rw-r--r-- | admin/pom-config.xml | 22 |
2 files changed, 16 insertions, 8 deletions
diff --git a/admin/pom-build.xml b/admin/pom-build.xml index 55b38a550..145ce4a5a 100644 --- a/admin/pom-build.xml +++ b/admin/pom-build.xml @@ -49,7 +49,7 @@ </profile> <profile> - <id>codeCoverage</id> + <id>coverage</id> <build> <plugins> diff --git a/admin/pom-config.xml b/admin/pom-config.xml index ac103ee6b..ba3a44532 100644 --- a/admin/pom-config.xml +++ b/admin/pom-config.xml @@ -26,12 +26,9 @@ <adminDir>${env.WORKSPACE}/admin</adminDir> <!-- P2 repository URL's --> - <platform-version>3.8milestones</platform-version> - <platform-site>http://download.eclipse.org/eclipse/updates/${platform-version}</platform-site> - <cdt-version>juno</cdt-version> - <cdt-site>http://download.eclipse.org/tools/cdt/builds/${cdt-version}/nightly</cdt-site> - <tm-version>3.3</tm-version> - <tm-site>http://download.eclipse.org/tm/updates/${tm-version}</tm-site> + <platform-site>http://download.eclipse.org/eclipse/updates/3.8milestones</platform-site> + <cdt-site>http://download.eclipse.org/tools/cdt/builds/juno/nightly</cdt-site> + <tm-site>http://download.eclipse.org/tm/updates/3.3</tm-site> <rxtx-site>http://rxtx.qbang.org/eclipse</rxtx-site> </properties> @@ -51,7 +48,7 @@ <repositories> <repository> - <id>platform-${platform-version}</id> + <id>platform</id> <url>${platform-site}</url> <layout>p2</layout> </repository> @@ -213,6 +210,17 @@ <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-version}</version> + <executions> + <execution> + <goals> + <goal>prepare-agent</goal> + </goals> + <configuration> + <dumpOnExit>true</dumpOnExit> + <output>file</output> + </configuration> + </execution> + </executions> </plugin> </plugins> </pluginManagement> |