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

46 lines
755 B
Groovy

group 'smartvenue'
version '1.0.0'
ext {
springBootVersion = '1.5.7.RELEASE'
}
apply plugin: 'java'
sourceCompatibility = 1.8
buildscript {
repositories {
//mavenCentral()
maven {
url 'https://maven.aliyun.com/repository/public'
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.4.RELEASE")
}
}
repositories {
//mavenCentral()
maven {
url 'https://maven.aliyun.com/repository/public'
}
}
dependencies {
compile fileTree(include: '*.jar', dir: 'src/libs')
compile project(':entity')
testCompile "org.springframework.boot:spring-boot-starter-test:${springBootVersion}"
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}