1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- buildscript {
- repositories {
- mavenLocal()
- maven {url "http://maven.aliyun.com/nexus/content/groups/public/"}
- }
- dependencies {
- classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.3.RELEASE")
- }
- }
- apply plugin: 'org.springframework.boot'
- version = '1.0'
- sourceCompatibility = 1.8
- repositories {
- mavenCentral()
- maven {url "http://maven.aliyun.com/nexus/content/groups/public/"}
- }
- dependencies {
- compile('org.springframework.boot:spring-boot-starter')
- testCompile('org.springframework.boot:spring-boot-starter-test')
- compile("org.springframework.boot:spring-boot-starter-web")
- compile("org.springframework.boot:spring-boot-starter-aop")
- compile 'org.jboss.spec.javax.el:jboss-el-api_3.0_spec:1.0.0.Final'
- compile 'io.jsonwebtoken:jjwt:0.7.0'
- compile 'io.springfox:springfox-swagger2:2.7.0'
- compile 'io.springfox:springfox-swagger-ui:2.7.0'
- compile 'commons-codec:commons-codec:1.6'
- compile("org.javassist:javassist")
- compile("org.jboss.netty:netty:3.2.10.Final")
- compile 'com.github.pagehelper:pagehelper:4.1.1'
- compile 'com.alibaba:fastjson:1.2.23'
- compile 'commons-io:commons-io:2.6'
- compile ('com.101tec:zkclient:0.8'){
- exclude group: "org.slf4j", module: "slf4j-log4j12"
- }
- compile 'commons-beanutils:commons-beanutils-core:1.8.3'
- compile fileTree(dir: '../lib', include: '*.jar')
- compile (
- project(':model'),
- project(':common'),
- project(':interface')
- )
- }
- configurations.compile.resolutionStrategy {
- failOnVersionConflict()
- force 'commons-lang:commons-lang:2.5'
- force 'commons-logging:commons-logging:1.1.3'
- force 'com.google.guava:guava:18.0'
- force 'org.slf4j:slf4j-api:1.7.21'
- force 'log4j:log4j:1.2.17'
- }
|