File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717apply plugin : ' java'
1818apply plugin : ' groovy'
1919apply plugin : ' jacoco'
20+ apply plugin : ' clirr'
2021
2122sourceCompatibility = ' 1.5'
2223targetCompatibility = ' 1.5'
2324
25+ def configDir = new File (rootDir, ' config' )
26+
27+ buildscript {
28+ repositories {
29+ maven { url ' https://oss.sonatype.org/content/repositories/snapshots' }
30+ mavenCentral()
31+ }
32+ dependencies {
33+ classpath ' me.trnl:clirr-gradle-plugin:0.4'
34+ }
35+ }
36+
2437repositories {
38+ maven { url ' https://oss.sonatype.org/content/repositories/snapshots' }
2539 mavenCentral()
2640}
2741
42+
2843dependencies {
2944 testCompile ' junit:junit:4.11'
3045 testCompile ' org.codehaus.groovy:groovy-all:2.0.8'
@@ -43,6 +58,12 @@ sourceSets {
4358 }
4459}
4560
61+ clirr {
62+ excludeFilter = new File (" $configDir /clirr-exclude.yml" )
63+ baseline ' org.mongodb:mongo-java-driver:2.11.3'
64+ }
65+
66+
4667/* Compiling */
4768tasks. withType(AbstractCompile ) {
4869 options. encoding = ' ISO-8859-1'
Original file line number Diff line number Diff line change 1+ ---
2+ differenceTypes :
3+ - 5001 # Removed class from the list of superclasses
4+
5+ classes :
6+ - com.mongodb.util.MyAsserts
7+ - com.mongodb.util.MyAsserts$MyAssert
8+
9+ members :
10+ com.mongodb.DBPortPool :
11+ - getStatistics()
12+ - memSize(com.mongodb.DBPort)
You can’t perform that action at this time.
0 commit comments