Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jacoco integration #2

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions .classpath
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry exported="true" kind="lib" path="lib/jess.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
<classpathentry exported="true" kind="lib" path="lib/asm-5.2.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="test"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="lib" path="lib/mockito-all-1.8.5.jar"/>
<classpathentry kind="lib" path="lib/org.eclipse.jgit-0.9.3.jar"/>
<classpathentry exported="true" kind="lib" path="lib/org.eclipse.jgit-0.9.3.jar"/>
<classpathentry exported="true" kind="lib" path="lib/jess.jar"/>
<classpathentry kind="lib" path="lib/org.jacoco.agent-0.7.8.201612092310.jar"/>
<classpathentry kind="lib" path="lib/jacocoagent.jar"/>
<classpathentry kind="lib" path="lib/jacocoant.jar"/>
<classpathentry kind="lib" path="lib/org.jacoco.ant-0.7.8.201612092310.jar"/>
<classpathentry kind="lib" path="lib/org.jacoco.core-0.7.8.201612092310.jar"/>
<classpathentry kind="lib" path="lib/org.jacoco.report-0.7.8.201612092310.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
7 changes: 3 additions & 4 deletions .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#Thu Aug 19 14:41:32 BRT 2010
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.5
org.eclipse.jdt.core.compiler.source=1.6
Binary file added Binary/besouro_plugin.source_1.0.1.jar
Binary file not shown.
Binary file added Binary/besouro_plugin_1.0.1.jar
Binary file not shown.
99 changes: 93 additions & 6 deletions META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: besouro_plugin
Bundle-Name: %Bundle-Name
Bundle-SymbolicName: besouro_plugin;singleton:=true
Bundle-Version: 1.0.2
Bundle-Activator: besouro.plugin.Activator
Expand All @@ -14,12 +14,99 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.ui.ide;bundle-version="3.6.0",
org.eclipse.debug.core;bundle-version="3.6.0",
org.eclipse.ui.navigator;bundle-version="3.5.0",
org.eclipse.jdt.ui;bundle-version="3.6.0"
org.eclipse.jdt.ui;bundle-version="3.6.0",
org.junit
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Export-Package: besouro.listeners,
Bundle-RequiredExecutionEnvironment: JavaSE-1.6,
JavaSE-1.7,
JavaSE-1.8
Export-Package: besouro.classification,
besouro.classification.besouro,
besouro.classification.randomHeuristic,
besouro.classification.zorro,
besouro.listeners,
besouro.measure,
besouro.model,
besouro.persistence,
besouro.plugin,
besouro.stream
besouro.stream,
jess,
jess.awt,
jess.factory,
jess.jsr94,
jess.server,
jess.swing,
jess.tools,
jess.xml,
org.eclipse.jgit,
org.eclipse.jgit.api,
org.eclipse.jgit.api.errors,
org.eclipse.jgit.diff,
org.eclipse.jgit.dircache,
org.eclipse.jgit.errors,
org.eclipse.jgit.events,
org.eclipse.jgit.fnmatch,
org.eclipse.jgit.ignore,
org.eclipse.jgit.lib,
org.eclipse.jgit.merge,
org.eclipse.jgit.nls,
org.eclipse.jgit.patch,
org.eclipse.jgit.revplot,
org.eclipse.jgit.revwalk,
org.eclipse.jgit.revwalk.filter,
org.eclipse.jgit.storage.file,
org.eclipse.jgit.storage.pack,
org.eclipse.jgit.transport,
org.eclipse.jgit.treewalk,
org.eclipse.jgit.treewalk.filter,
org.eclipse.jgit.util,
org.eclipse.jgit.util.io,
org.jacoco.agent,
org.jacoco.agent.rt,
org.jacoco.agent.rt.internal_e5875b2,
org.jacoco.agent.rt.internal_e5875b2.asm,
org.jacoco.agent.rt.internal_e5875b2.asm.commons,
org.jacoco.agent.rt.internal_e5875b2.asm.tree,
org.jacoco.agent.rt.internal_e5875b2.core,
org.jacoco.agent.rt.internal_e5875b2.core.data,
org.jacoco.agent.rt.internal_e5875b2.core.instr,
org.jacoco.agent.rt.internal_e5875b2.core.internal,
org.jacoco.agent.rt.internal_e5875b2.core.internal.data,
org.jacoco.agent.rt.internal_e5875b2.core.internal.flow,
org.jacoco.agent.rt.internal_e5875b2.core.internal.instr,
org.jacoco.agent.rt.internal_e5875b2.core.runtime,
org.jacoco.agent.rt.internal_e5875b2.output,
org.jacoco.ant,
org.jacoco.asm,
org.jacoco.asm.commons,
org.jacoco.asm.tree,
org.jacoco.core,
org.jacoco.core.analysis,
org.jacoco.core.data,
org.jacoco.core.instr,
org.jacoco.core.internal,
org.jacoco.core.internal.analysis,
org.jacoco.core.internal.data,
org.jacoco.core.internal.flow,
org.jacoco.core.internal.instr,
org.jacoco.core.runtime,
org.jacoco.core.tools,
org.jacoco.report,
org.jacoco.report.check,
org.jacoco.report.csv,
org.jacoco.report.html,
org.jacoco.report.internal,
org.jacoco.report.internal.html,
org.jacoco.report.internal.html.index,
org.jacoco.report.internal.html.page,
org.jacoco.report.internal.html.resources,
org.jacoco.report.internal.html.table,
org.jacoco.report.internal.xml,
org.jacoco.report.xml,
xmlsrc
Bundle-ClassPath: .,
lib/org.eclipse.jgit-0.9.3.jar,
lib/jess.jar
lib/jess.jar,
lib/org.jacoco.core-0.7.8.201612092310.jar,
lib/org.jacoco.ant-0.7.8.201612092310.jar,
lib/asm-5.2.jar
2 changes: 2 additions & 0 deletions OSGI-INF/l10n/bundle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Properties file for besouro_plugin
Bundle-Name = besouro_plugin
2 changes: 1 addition & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The main difference between them, so far, is that Zorro relies on Hackystat[http

Besouro was initially built to make the Zorro's rule system available for a TDD empirical evaluation, once it became obsolete since Hackystat evolved to it's new architecture, on version 8.


= How To Build Besouro

First of all, you need to download the Eclipse SDK, containing the Eclipse Plug-in Development Environment (PDE).
Expand Down
8 changes: 7 additions & 1 deletion build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,10 @@ bin.includes = plugin.xml,\
.,\
icons/,\
lib/org.eclipse.jgit-0.9.3.jar,\
lib/jess.jar
lib/jess.jar,\
OSGI-INF/l10n/bundle.properties,\
OSGI-INF/,\
lib/org.jacoco.core-0.7.8.201612092310.jar,\
lib/org.jacoco.ant-0.7.8.201612092310.jar,\
lib/asm-5.2.jar
src.excludes = test/
Loading