project init
This commit is contained in:
40
device-socket/build.gradle
Normal file
40
device-socket/build.gradle
Normal file
@@ -0,0 +1,40 @@
|
||||
group 'SmartVenue'
|
||||
version '1.0-SNAPSHOT'
|
||||
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'org.springframework.boot'
|
||||
|
||||
sourceCompatibility = 1.8
|
||||
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.4.RELEASE")
|
||||
}
|
||||
}
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
jar {
|
||||
baseName = 'sv-socket'
|
||||
}
|
||||
dependencies {
|
||||
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||||
compile project(':service')
|
||||
compile fileTree(include: '*.jar', dir: 'src/libs')
|
||||
compile 'mysql:mysql-connector-java:6.0.6'
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile) {
|
||||
options.encoding = "UTF-8"
|
||||
}
|
||||
|
||||
|
||||
compileJava.options.encoding = 'UTF-8'
|
||||
|
||||
compileTestJava.options.encoding = 'UTF-8'
|
||||
|
||||
Reference in New Issue
Block a user