project init

This commit is contained in:
limqhz
2020-01-29 21:50:10 +08:00
parent 3d215fe181
commit d4c677d2b5
821 changed files with 111343 additions and 73 deletions

39
service/build.gradle Normal file
View File

@@ -0,0 +1,39 @@
group 'SmartVenue'
version '1.0.0'
ext {
springBootVersion = '1.5.7.RELEASE'
}
apply plugin: 'java'
sourceCompatibility = 1.8
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.4.RELEASE")
}
}
repositories {
mavenCentral()
}
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"
}