diff options
author | Vitaly Takmazov | 2016-11-08 15:54:33 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-11-08 15:54:33 +0300 |
commit | 4314d834724bbb5c671e7300b7de865fe53c51fb (patch) | |
tree | adf95198a7db90a8cb6d2cdab90935af1e612ddc /juick-xmpp/build.gradle | |
parent | 397179619fdfa0b4b15f62437a91bd17924e7678 (diff) |
reorganize structure again
Diffstat (limited to 'juick-xmpp/build.gradle')
-rw-r--r-- | juick-xmpp/build.gradle | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/juick-xmpp/build.gradle b/juick-xmpp/build.gradle new file mode 100644 index 00000000..2cb9ef9a --- /dev/null +++ b/juick-xmpp/build.gradle @@ -0,0 +1,33 @@ +apply plugin: 'java' +apply plugin: 'war' +apply plugin: 'org.akhikhl.gretty' +apply plugin: 'com.github.ben-manes.versions' + +repositories { + mavenCentral() +} + +dependencies { + compile project(':juick-core') + compile 'org.slf4j:slf4j-jdk14:1.7.21' + def springFrameworkVersion = '4.3.3.RELEASE' + compile "org.springframework:spring-webmvc:${springFrameworkVersion}" + def jacksonVersion = '2.8.4' + compile "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}" + compile "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}" + compile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${jacksonVersion}" + compile 'javax.inject:javax.inject:1' + compile 'org.apache.httpcomponents:httpclient:4.5.2' + compile 'org.apache.commons:commons-dbcp2:2.1.1' + compile 'com.mitchellbosecke:pebble-spring4:2.2.3' + providedRuntime 'mysql:mysql-connector-java:5.1.39' +} + +compileJava.options.encoding = 'UTF-8' + +gretty { + httpPort = 8080 + contextPath = '' + servletContainer = 'tomcat8' +} + |