Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
paveldudka committed Dec 15, 2015
1 parent 09611ac commit 5d855e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
buildscript {
repositories {
mavenCentral()
mavenLocal()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
}
dependencies {
classpath 'com.trickyandroid:jacoco-everywhere:0.1.0-SNAPSHOT'
classpath 'com.trickyandroid:jacoco-everywhere:0.1.0'
}
}

Expand Down
2 changes: 1 addition & 1 deletion plugin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# org.gradle.parallel=true


VERSION_NAME=0.1.0-SNAPSHOT
VERSION_NAME=0.1.0

ARTIFACT_NAME=jacoco-everywhere
POM_DESCRIPTION=Gradle plugin which allows to generate Jacoco coverage report for both integration & unit tests
Expand Down
2 changes: 1 addition & 1 deletion plugin/maven-publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ artifacts {

gradle.taskGraph.whenReady { taskGraph ->
signArchives.onlyIf {
isReleaseBuild() && gradle.taskGraph.hasTask("uploadArchives")
isReleaseBuild() && gradle.taskGraph.getAllTasks().find({ it.name == "uploadArchives" }) != null
}
}

Expand Down

0 comments on commit 5d855e2

Please sign in to comment.