netty-netty与api进行合并,这样可以方便我们进行之后的人脸切换到二维码的操作
This commit is contained in:
@@ -1,22 +1,25 @@
|
||||
buildscript {
|
||||
ext {
|
||||
springBootVersion = '1.5.6.RELEASE'
|
||||
}
|
||||
repositories {
|
||||
maven {
|
||||
url 'http://maven.aliyun.com/nexus/content/groups/public/'
|
||||
}
|
||||
}
|
||||
dependencies {
|
||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
||||
}
|
||||
}
|
||||
|
||||
group 'SmartVenue'
|
||||
version '1.0.0'
|
||||
version '2.0.0'
|
||||
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'org.springframework.boot'
|
||||
|
||||
sourceCompatibility = 1.8
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
//mavenCentral()
|
||||
maven {
|
||||
url 'http://maven.aliyun.com/nexus/content/groups/public/'
|
||||
}
|
||||
}
|
||||
dependencies {
|
||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.4.RELEASE")
|
||||
}
|
||||
}
|
||||
repositories {
|
||||
//mavenCentral()
|
||||
maven {
|
||||
@@ -27,11 +30,14 @@ repositories {
|
||||
jar {
|
||||
baseName = 'sv-api'
|
||||
}
|
||||
|
||||
ext {
|
||||
nettyVersion = '4.1.10.Final'
|
||||
}
|
||||
dependencies {
|
||||
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||||
compile fileTree(include: '*.jar', dir: 'src/libs')
|
||||
compile project(':service')
|
||||
compile "io.netty:netty-all:${nettyVersion}"
|
||||
compile 'mysql:mysql-connector-java:6.0.6'
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user