Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tla2bAST
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
tla2bAST
Commits
184416da
Commit
184416da
authored
5 years ago
by
Michael Leuschel
Browse files
Options
Downloads
Patches
Plain Diff
remove Jacoco from build
parent
5c16d48e
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+5
-0
5 additions, 0 deletions
Makefile
build.gradle
+10
-10
10 additions, 10 deletions
build.gradle
with
15 additions
and
10 deletions
Makefile
0 → 100644
+
5
−
0
View file @
184416da
build/libs/TLA2B.jar
:
src/main/java/de/tla2b/*/*.java src/main/java/de/tla2b/*.java
gradle createJar
install
:
build/libs/TLA2B.jar
cp
build/libs/TLA2B.jar ../../prob_prolog/lib/
This diff is collapsed.
Click to expand it.
build.gradle
+
10
−
10
View file @
184416da
apply
plugin:
'java'
apply
plugin:
'java'
apply
plugin:
'eclipse'
apply
plugin:
'eclipse'
apply
plugin:
'maven'
apply
plugin:
'maven'
apply
plugin:
'jacoco'
//
apply plugin: 'jacoco'
apply
plugin:
'findbugs'
apply
plugin:
'findbugs'
project
.
version
=
'1.1.1'
project
.
version
=
'1.1.1'
...
@@ -50,17 +50,17 @@ dependencies {
...
@@ -50,17 +50,17 @@ dependencies {
testCompile
(
group:
'junit'
,
name:
'junit'
,
version:
'4.12'
)
testCompile
(
group:
'junit'
,
name:
'junit'
,
version:
'4.12'
)
}
}
jacoco
{
//
jacoco {
toolVersion
=
"0.7.1.201405082137"
//
toolVersion = "0.7.1.201405082137"
reportsDir
=
file
(
"$buildDir/customJacocoReportDir"
)
//
reportsDir = file("$buildDir/customJacocoReportDir")
}
//
}
// type 'gradle tla2b jacocoIntegrationTestReport' in order to run the jacoco code coverage analysis
// type 'gradle tla2b jacocoIntegrationTestReport' in order to run the jacoco code coverage analysis
task
jacocoIntegrationTestReport
(
type:
JacocoReport
)
{
//
task jacocoIntegrationTestReport(type: JacocoReport) {
sourceSets
sourceSets
.
main
//
sourceSets sourceSets.main
//executionData files('build/jacoco/integrationTests.exec')
//
//executionData files('build/jacoco/integrationTests.exec')
executionData
fileTree
(
project
.
rootDir
.
absolutePath
).
include
(
"**/build/jacoco/*.exec"
)
//
executionData fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec")
}
//
}
tasks
.
withType
(
FindBugs
)
{
tasks
.
withType
(
FindBugs
)
{
// disable findbugs by default
// disable findbugs by default
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment