Merge branch '4.1'
Conflicts: build.gradle version.gradle
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
@ -313,8 +313,7 @@ subprojects {
|
|||
}
|
||||
|
||||
clirr {
|
||||
baseline = [group, name, clirrBaseline].join(':')
|
||||
failOnErrors clirrFailOnErrors
|
||||
semver false
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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() {
|
||||
|
|
Before Width: | Height: | Size: 759 B After Width: | Height: | Size: 759 B |
Before Width: | Height: | Size: 793 B After Width: | Height: | Size: 793 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 702 B After Width: | Height: | Size: 702 B |
Before Width: | Height: | Size: 783 B After Width: | Height: | Size: 783 B |
Before Width: | Height: | Size: 633 B After Width: | Height: | Size: 633 B |
Before Width: | Height: | Size: 626 B After Width: | Height: | Size: 626 B |
Before Width: | Height: | Size: 616 B After Width: | Height: | Size: 616 B |
Before Width: | Height: | Size: 723 B After Width: | Height: | Size: 723 B |
Before Width: | Height: | Size: 719 B After Width: | Height: | Size: 719 B |
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|