mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Bump gradle-clirr-plugin to 0.2.0
This commit is contained in:
parent
f6ba363843
commit
79e59028ac
2 changed files with 3 additions and 9 deletions
|
@ -7,7 +7,7 @@ buildscript {
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'org.kordamp:markdown-gradle-plugin:1.0.0'
|
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'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
apply plugin: 'org.kordamp.gradle.markdown'
|
apply plugin: 'org.kordamp.gradle.markdown'
|
||||||
|
@ -283,8 +283,7 @@ subprojects {
|
||||||
}
|
}
|
||||||
|
|
||||||
clirr {
|
clirr {
|
||||||
baseline = [group, name, clirrBaseline].join(':')
|
semver false
|
||||||
failOnErrors clirrFailOnErrors
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -297,7 +296,7 @@ subprojects*.jar {
|
||||||
// Important to specify this task after the subprojects block
|
// Important to specify this task after the subprojects block
|
||||||
task clirrRootReport(type: org.kordamp.gradle.clirr.ClirrReportTask) {
|
task clirrRootReport(type: org.kordamp.gradle.clirr.ClirrReportTask) {
|
||||||
dependsOn = subprojects.tasks.clirr
|
dependsOn = subprojects.tasks.clirr
|
||||||
reports = files(subprojects.tasks.clirr.xmlReport)
|
reports = files((subprojects.findAll { it.clirr.enabled == true }).tasks.clirr.xmlReport)
|
||||||
}
|
}
|
||||||
|
|
||||||
def getGitCommit() {
|
def getGitCommit() {
|
||||||
|
|
|
@ -4,10 +4,5 @@ allprojects {
|
||||||
isSnapshot = true
|
isSnapshot = true
|
||||||
jxmppVersion = '0.4.2-beta1'
|
jxmppVersion = '0.4.2-beta1'
|
||||||
smackMinAndroidSdk = 8
|
smackMinAndroidSdk = 8
|
||||||
|
|
||||||
// The baseline version to check the API's binary
|
|
||||||
// compatibility against with Clirr.
|
|
||||||
clirrBaseline = '4.1.0-rc2'
|
|
||||||
clirrFailOnErrors = false
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue