aboutsummaryrefslogtreecommitdiff
path: root/jacoco
diff options
context:
space:
mode:
authorMarc R. Hoffmann <hoffmann@mountainminds.com>2017-05-25 00:53:18 +0200
committerEvgeny Mandrikov <Godin@users.noreply.github.com>2017-05-25 00:53:18 +0200
commit13f12d39db0b3c0ddc60124572e5d4f984be0255 (patch)
tree2e1ea16bf0675dfd83730f48ad48edf2e880df89 /jacoco
parent10f3ff0dd010d647625ef5937f301126250267d0 (diff)
downloadjacoco-13f12d39db0b3c0ddc60124572e5d4f984be0255.tar.gz
Add Command Line Interface (#525)
Diffstat (limited to 'jacoco')
-rw-r--r--jacoco/assembly.xml8
-rw-r--r--jacoco/pom.xml10
2 files changed, 16 insertions, 2 deletions
diff --git a/jacoco/assembly.xml b/jacoco/assembly.xml
index b25483f9..81a39386 100644
--- a/jacoco/assembly.xml
+++ b/jacoco/assembly.xml
@@ -65,6 +65,14 @@
</dependencySet>
<dependencySet>
<outputDirectory>lib</outputDirectory>
+ <outputFileNameMapping>jacococli.jar</outputFileNameMapping>
+ <useProjectArtifact>false</useProjectArtifact>
+ <includes>
+ <include>${project.groupId}:org.jacoco.cli:jar:nodeps</include>
+ </includes>
+ </dependencySet>
+ <dependencySet>
+ <outputDirectory>lib</outputDirectory>
<outputFileNameMapping>jacocoagent.jar</outputFileNameMapping>
<useProjectArtifact>false</useProjectArtifact>
<includes>
diff --git a/jacoco/pom.xml b/jacoco/pom.xml
index 5a1875da..95e29fd8 100644
--- a/jacoco/pom.xml
+++ b/jacoco/pom.xml
@@ -55,6 +55,12 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
+ <artifactId>org.jacoco.cli</artifactId>
+ <version>${project.version}</version>
+ <classifier>nodeps</classifier>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
<artifactId>org.jacoco.examples</artifactId>
<version>${project.version}</version>
<type>zip</type>
@@ -104,8 +110,8 @@
<configuration>
<rules>
<requireFilesSize>
- <maxsize>3500000</maxsize>
- <minsize>2500000</minsize>
+ <maxsize>4100000</maxsize>
+ <minsize>3400000</minsize>
<files>
<file>${project.build.directory}/jacoco-${qualified.bundle.version}.zip</file>
</files>