123456789101112131415161718192021222324252627 |
- subprojects {
- apply plugin: 'java'
- apply plugin: 'idea'
- sourceCompatibility = 1.8
- targetCompatibility = 1.8
- repositories {
- maven { url "https://maven.aliyun.com/repository/public" }
- mavenCentral()
- }
- // configurations {
- // all {
- // exclude group: 'ch.qos.logback'
- // }
- // }
- task copyAllDependencies(type: Copy) {
- from configurations.compileClasspath
- into "${buildDir}/libs/lib"
- }
- tasks.withType(JavaCompile) {
- options.encoding = "UTF-8"
- }
- }
|