netty-netty与api进行合并,这样可以方便我们进行之后的人脸切换到二维码的操作

This commit is contained in:
limqhz
2020-07-14 01:00:16 +08:00
parent fb9fa0ed4f
commit 7f2e9ffdb3
48 changed files with 238 additions and 514 deletions

View File

@@ -1,49 +0,0 @@
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}")
}
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
group 'SmartVenue'
version '2.0.0'
sourceCompatibility = 1.8
repositories {
// maven {url 'http://maven.ydd100.cn/repository/maven-public/'}
//mavenCentral()
maven {
url 'http://maven.aliyun.com/nexus/content/groups/public/'
}
}
ext {
version = '1.0'
springBootVersion = '1.5.4.RELEASE'
nettyVersion = '4.1.10.Final'
junitVersion = "4.11"
jacksonVersion = "2.5.0"
}
[compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
dependencies {
compile fileTree(include: '*.jar', dir: 'src/libs')
compile project(':service')
compile "io.netty:netty-all:${nettyVersion}"
compile 'mysql:mysql-connector-java:6.0.6'
}