Files
smart_venue/build.gradle
2021-02-24 11:33:45 +08:00

22 lines
338 B
Groovy

group 'smartvenue'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
//mavenCentral()
maven {
url 'https://maven.aliyun.com/repository/public'
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}