Skip to content

Commit

Permalink
Merge branch '4.1'
Browse files Browse the repository at this point in the history
Conflicts:
	build.gradle
	version.gradle
  • Loading branch information
Flowdalic committed Mar 18, 2015
2 parents b2221d5 + 8c0218f commit 4e6fbe7
Show file tree
Hide file tree
Showing 12 changed files with 3 additions and 9 deletions.
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}
dependencies {
classpath 'org.kordamp:markdown-gradle-plugin:1.0.0'
classpath 'org.kordamp.gradle:clirr-gradle-plugin:0.1.0'
classpath 'org.kordamp.gradle:clirr-gradle-plugin:0.2.0'
classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.3.1"
}
}
Expand Down Expand Up @@ -313,8 +313,7 @@ subprojects {
}

clirr {
baseline = [group, name, clirrBaseline].join(':')
failOnErrors clirrFailOnErrors
semver false
}
}

Expand Down Expand Up @@ -348,7 +347,7 @@ task jacocoRootReport(type: org.gradle.testing.jacoco.tasks.JacocoReport) {
// Important to specify this task after the subprojects block
task clirrRootReport(type: org.kordamp.gradle.clirr.ClirrReportTask) {
dependsOn = subprojects.tasks.clirr
reports = files(subprojects.tasks.clirr.xmlReport)
reports = files((subprojects.findAll { it.clirr.enabled == true }).tasks.clirr.xmlReport)
}

def getGitCommit() {
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
5 changes: 0 additions & 5 deletions version.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,5 @@ allprojects {
isSnapshot = true
jxmppVersion = '0.5.0-alpha2'
smackMinAndroidSdk = 8

// The baseline version to check the API's binary
// compatibility against with Clirr.
clirrBaseline = '4.1.0-rc2'
clirrFailOnErrors = false
}
}

0 comments on commit 4e6fbe7

Please sign in to comment.