build.gradle 706 Bytes
Newer Older
duanledexianxianxian's avatar
duanledexianxianxian committed
1 2 3 4 5
plugins {
    id 'java'
}


duanledexianxianxian's avatar
duanledexianxianxian committed
6 7 8
group 'com.duanledexianxianxian.plugins.idea'
version '1.0-SNAPSHOT'

duanledexianxianxian's avatar
duanledexianxianxian committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

//subprojects {
////    dependencies {
////        testCompile group: 'junit', name: 'junit', version: '4.12'
////        compile group: 'com.baomidou', name: 'mybatis-plus-generator', version: '3.2.0'
////        providedCompile group: 'org.projectlombok', name: 'lombok', version: '1.18.10'
////    }
//}

allprojects {
    sourceCompatibility = 1.8
}

//dependencies {
//    testCompile group: 'junit', name: 'junit', version: '4.12'
//}


dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'
    compile group: 'com.baomidou', name: 'mybatis-plus-generator', version: '3.2.0'
}