Skip to main content
summaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorFrancois Le Fevre2017-05-16 12:17:15 +0000
committerBenoit Maggi2017-05-18 07:25:00 +0000
commitf5b53d07f5f3661301dfe9ceeecb0683dd5e5967 (patch)
tree1bf4e69f000822009b2859380dc4f6010b9264a7 /releng
parent80efb81e005431a204d15dc6f60d918cd6a158ed (diff)
downloadorg.eclipse.papyrus-f5b53d07f5f3661301dfe9ceeecb0683dd5e5967.tar.gz
org.eclipse.papyrus-f5b53d07f5f3661301dfe9ceeecb0683dd5e5967.tar.xz
org.eclipse.papyrus-f5b53d07f5f3661301dfe9ceeecb0683dd5e5967.zip
Bug 516718 - [test] configure jacoco not to take into account
org.eclipse.uml2 class in report Actions -add excludes configuration -add includes configuration see http://www.eclemma.org/jacoco/trunk/doc/instrument-mojo.html Tests -mvn clean install -f tests/junit/plugins/developer/org.eclipse.papyrus.developer.suite.tests/pom.xml -Dtarget.suffix=portable -P\!generate-tests -Declipse.download=http://download.eclipse.org Change-Id: I55ce5b2c517d1f9f1f8f4ee2e5d61f0c4e234232 Signed-off-by: Francois Le Fevre <francois.le-fevre@cea.fr>
Diffstat (limited to 'releng')
-rw-r--r--releng/main-tests/pom.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/releng/main-tests/pom.xml b/releng/main-tests/pom.xml
index 3c23d21e05a..b95cfc72dd0 100644
--- a/releng/main-tests/pom.xml
+++ b/releng/main-tests/pom.xml
@@ -98,6 +98,14 @@
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
+ <configuration>
+ <excludes>
+ <exclude>org.eclipse.uml2</exclude>
+ </excludes>
+ <includes>
+ <include>org.eclipse.papyrus.*</include>
+ </includes>
+ </configuration>
<executions>
<execution>
<id>default-prepare-agent</id>

Back to the top