aboutsummaryrefslogtreecommitdiff
path: root/juick-server-jdbc/build.gradle
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2017-06-29 14:03:04 +0300
committerGravatar Vitaly Takmazov2017-06-29 14:03:04 +0300
commit02723131139806c761539a42a5fa80b68ecadee8 (patch)
treeca66f22993908758385f708eb2da4e4aeb20510a /juick-server-jdbc/build.gradle
parent4cc4b08f4377b7db697abdb533c625da608eb3d3 (diff)
project structure: split server into jdbc + web
Diffstat (limited to 'juick-server-jdbc/build.gradle')
-rw-r--r--juick-server-jdbc/build.gradle76
1 files changed, 76 insertions, 0 deletions
diff --git a/juick-server-jdbc/build.gradle b/juick-server-jdbc/build.gradle
new file mode 100644
index 00000000..fde15afe
--- /dev/null
+++ b/juick-server-jdbc/build.gradle
@@ -0,0 +1,76 @@
+apply plugin: 'java'
+apply plugin: 'war'
+
+sourceCompatibility = 1.8
+
+dependencies {
+ compile project(':juick-server-core')
+
+ compile "com.fasterxml.jackson.core:jackson-core:${rootProject.jacksonVersion}"
+ compile "com.fasterxml.jackson.core:jackson-databind:${rootProject.jacksonVersion}"
+ compile "com.fasterxml.jackson.core:jackson-annotations:${rootProject.jacksonVersion}"
+ compile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${rootProject.jacksonVersion}"
+
+ providedCompile "ch.qos.logback:logback-classic:${rootProject.logbackVersion}"
+ providedCompile "ch.qos.logback:logback-core:${rootProject.logbackVersion}"
+ providedCompile "ch.qos.logback:logback-access:${rootProject.logbackVersion}"
+
+ providedCompile "org.slf4j:slf4j-api:${rootProject.slf4jVersion}"
+ providedCompile "org.slf4j:jcl-over-slf4j:${rootProject.slf4jVersion}"
+ providedCompile "org.slf4j:log4j-over-slf4j:${rootProject.slf4jVersion}"
+ providedCompile "org.slf4j:jul-to-slf4j:${rootProject.slf4jVersion}"
+
+ compile "org.apache.httpcomponents:httpclient:4.5.3"
+ providedCompile "org.apache.commons:commons-lang3:3.6"
+ providedCompile "org.apache.commons:commons-collections4:4.1"
+ providedCompile "org.apache.commons:commons-text:1.1"
+ providedCompile "commons-io:commons-io:2.5"
+ providedCompile "commons-codec:commons-codec:1.10"
+
+ compile 'com.github.ben-manes.caffeine:caffeine:2.5.2'
+
+ compile "org.springframework:spring-context:${rootProject.springFrameworkVersion}"
+ compile "org.springframework:spring-jdbc:${rootProject.springFrameworkVersion}"
+
+ compile "org.springframework.security:spring-security-web:${rootProject.springSecurityVersion}"
+ compile "org.springframework.security:spring-security-config:${rootProject.springSecurityVersion}"
+
+ providedCompile "org.apache.commons:commons-dbcp2:2.1.1"
+ compile "com.googlecode.log4jdbc:log4jdbc:1.2"
+ compile "javax.inject:javax.inject:1"
+
+ compile "rocks.xmpp:xmpp-core-client:0.7.4"
+ compile "rocks.xmpp:xmpp-extensions-client:0.7.4"
+
+ compile 'org.imgscalr:imgscalr-lib:4.2'
+
+ providedCompile "javax.servlet:javax.servlet-api:3.1.0"
+
+ providedRuntime "commons-fileupload:commons-fileupload:1.3.3"
+
+ testCompile "ch.vorburger.mariaDB4j:mariaDB4j:2.2.3"
+ testCompile "junit:junit:${rootProject.junitVersion}"
+ testCompile "org.hamcrest:hamcrest-all:${rootProject.hamcrestVersion}"
+ testCompile "org.mockito:mockito-core:${rootProject.mockitoVersion}"
+ testCompile "org.springframework:spring-test:${rootProject.springFrameworkVersion}"
+ testCompile "org.springframework.security:spring-security-test:${rootProject.springSecurityVersion}"
+
+ testRuntime "mysql:mysql-connector-java:5.1.40"
+}
+
+compileJava.options.encoding = 'UTF-8'
+
+configurations {
+ all*.exclude module: 'commons-logging'
+}
+
+configurations {
+ testArtifacts.extendsFrom testRuntime
+}
+task testJar(type: Jar) {
+ classifier "test"
+ from sourceSets.test.output
+}
+artifacts {
+ testArtifacts testJar
+}