Skip to content

Commit a57392b

Browse files
committed
Updated CLIRR to check compatibility against 3.0.0
JAVA-1779
1 parent d5e2d85 commit a57392b

File tree

6 files changed

+64
-387
lines changed

6 files changed

+64
-387
lines changed

bson/build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,16 @@
1515
*/
1616

1717
apply plugin: 'osgi'
18+
apply plugin: 'org.kordamp.gradle.clirr'
1819

20+
def configDir = new File(rootDir, 'config')
1921
archivesBaseName = 'bson'
2022

23+
clirr {
24+
excludeFilter = new File("$configDir/clirr-exclude.yml")
25+
baseline 'org.mongodb:bson:3.0.0'
26+
}
27+
2128
jar {
2229
manifest {
2330
instruction 'Import-Package',

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ apply plugin: 'eclipse'
1818
apply plugin: 'idea'
1919

2020
def configDir = new File(rootDir, 'config')
21-
2221
ext.nettyVersion = '4.0.26.Final'
2322

2423
buildscript {
@@ -29,7 +28,7 @@ buildscript {
2928
mavenLocal()
3029
}
3130
dependencies {
32-
classpath 'me.trnl:clirr-gradle-plugin:0.4'
31+
classpath 'org.kordamp.gradle:clirr-gradle-plugin:0.2.1'
3332
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:1.12.+'
3433
classpath 'com.bmuschko:gradle-nexus-plugin:2.2'
3534
}

0 commit comments

Comments
 (0)