Skip to content
This repository has been archived by the owner on Oct 1, 2020. It is now read-only.

Commit

Permalink
Upgrade to JaCoCo 0.7.0 and ASM 5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
marchof committed Mar 19, 2014
1 parent 5e48984 commit b98fac1
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 15 deletions.
14 changes: 7 additions & 7 deletions com.mountainminds.eclemma.asm/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ Bundle-SymbolicName: com.mountainminds.eclemma.asm
Bundle-Version: 2.2.2.qualifier
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Export-Package: org.objectweb.asm;version=4.1,
org.objectweb.asm.signature;version=4.1,
org.objectweb.asm.commons;version=4.1,
org.objectweb.asm.tree;version=4.1,
org.objectweb.asm.tree.analysis;version=4.1,
org.objectweb.asm.util;version=4.1,
org.objectweb.asm.xml;version=4.1
Export-Package: org.objectweb.asm;version=5.0,
org.objectweb.asm.signature;version=5.0,
org.objectweb.asm.commons;version=5.0,
org.objectweb.asm.tree;version=5.0,
org.objectweb.asm.tree.analysis;version=5.0,
org.objectweb.asm.util;version=5.0,
org.objectweb.asm.xml;version=5.0
Bundle-RequiredExecutionEnvironment: J2SE-1.5
4 changes: 2 additions & 2 deletions com.mountainminds.eclemma.asm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
<artifactItems>
<artifactItem>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-all</artifactId>
<version>4.1</version>
<artifactId>asm-debug-all</artifactId>
<version>5.0</version>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
Expand Down
2 changes: 1 addition & 1 deletion com.mountainminds.eclemma.build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@

<orbit-repository-url>http:https://download.eclipse.org/tools/orbit/downloads/drops/R20110523182458/repository/</orbit-repository-url>

<jacoco.version>0.6.3.201306030806</jacoco.version>
<jacoco.version>0.7.0.201403182114</jacoco.version>
<tycho.testArgLine>-Xmx800m</tycho.testArgLine>

<!-- Sonar -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void setup() {
@Test
public void testGetClassCoverage() {
final ClassCoverageImpl c = new ClassCoverageImpl("package/MyClass", 0,
null, "java/lang/Object", new String[0]);
false, null, "java/lang/Object", new String[0]);
classes.add(c);

final AnalyzedNodes nodes = new AnalyzedNodes(classes, sourcefiles);
Expand Down
6 changes: 3 additions & 3 deletions com.mountainminds.eclemma.core/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.debug.core,
org.eclipse.jdt.core,
org.eclipse.jdt.launching,
org.jacoco.core;bundle-version="[0.6.3,0.6.4)",
org.jacoco.agent;bundle-version="[0.6.3,0.6.4)",
org.jacoco.report;bundle-version="[0.6.3,0.6.4)"
org.jacoco.core;bundle-version="[0.7.0,0.7.1)",
org.jacoco.agent;bundle-version="[0.7.0,0.7.1)",
org.jacoco.report;bundle-version="[0.7.0,0.7.1)"
Bundle-Activator: com.mountainminds.eclemma.internal.core.EclEmmaCorePlugin
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
5 changes: 5 additions & 0 deletions com.mountainminds.eclemma.doc/pages/changes.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
<h1>EclEmma Change Log</h1>

<h2>Trunk Build (not yet released)</h2>
<ul>
<li>Now with Java 8 support.</li>
<li>Upgrade to JaCoCo 0.7.0.</li>
</ul>


<h2>Version 2.2.1 (2013/06/09)</h2>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion com.mountainminds.eclemma.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Bundle-Version: 2.2.2.qualifier
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Require-Bundle: com.mountainminds.eclemma.core,
org.jacoco.core;bundle-version="[0.6.3,0.6.4)",
org.jacoco.core;bundle-version="[0.7.0,0.7.1)",
org.eclipse.core.expressions,
org.eclipse.core.runtime,
org.eclipse.debug.ui,
Expand Down

0 comments on commit b98fac1

Please sign in to comment.