| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- plugins {
- id "org.springframework.boot" version '1.5.9.RELEASE'
- }
- apply from: "$rootDir/gradle/persist-publish.gradle"
- configurations {
- all*.exclude group: 'org.slf4j', module: 'slf4j-log4j12'
- }
- dependencies {
- compile project(':sso-common')
- compile("org.springframework.boot:spring-boot-starter-actuator")
- compile("org.springframework.boot:spring-boot-starter-web")
- compile("org.springframework.boot:spring-boot-starter-security")
- compile("org.springframework.boot:spring-boot-starter-data-jpa")
- compile("org.springframework.boot:spring-boot-starter-data-redis")
- compile("org.springframework:spring-tx:4.3.3.RELEASE")
- compile("org.springframework.session:spring-session:1.2.2.RELEASE")
- compile("mysql:mysql-connector-java:5.1.41")
- compile("com.alibaba:druid:1.1.6")
- compile("com.alibaba:fastjson:1.2.15")
- compile("com.alibaba:dubbo:2.8.4") {
- exclude(module: 'javax.servlet-api')
- exclude(module: 'httpcore')
- }
- compile("com.uas.message:message-mail-api:0.0.1")
- compile("com.uas.message:message-sms-api:0.0.1")
- compile("com.uas.account:sso-core:0.0.1")
- compile("com.uas.dfs:dfs-api:0.0.2")
- compile("org.apache.zookeeper:zookeeper:3.4.6")
- compile("com.github.sgroschupf:zkclient:0.1")
- compile("com.belerweb:pinyin4j:2.5.1")
- compile("commons-fileupload:commons-fileupload:1.3.2")
- compile("org.apache.httpcomponents:httpmime:4.4")
- compile("org.apache.httpcomponents:httpcore:4.4.5")
- compile("org.apache.httpcomponents:httpclient:4.4")
- testCompile("org.springframework.boot:spring-boot-starter-test")
- }
|