buildscript { repositories { mavenCentral() } dependencies { classpath 'com.tkruse.gradle:gradle-groovysh-plugin:1.0.8' } } apply plugin: 'java' apply plugin: 'war' apply plugin: 'org.akhikhl.gretty' apply plugin: 'com.github.ben-manes.versions' apply plugin: 'com.github.tkruse.groovysh' repositories { mavenCentral() } dependencies { compile project(':juick-core') compile project(':deps:com.juick.xmpp') compile "org.apache.commons:commons-lang3:3.5" compile "org.springframework:spring-jdbc:4.3.4.RELEASE" providedCompile 'javax.servlet:javax.servlet-api:3.1.0' compile 'javax.inject:javax.inject:1' compile 'com.github.pengrad:java-telegram-bot-api:2.1.4' compile 'org.msbotframework4j:msbotframework4j-builder:0.1.4' compile 'com.neovisionaries:nv-websocket-client:1.30' compile 'org.apache.commons:commons-dbcp2:2.1.1' compile 'net.coobird:thumbnailator:0.4.8' providedRuntime 'mysql:mysql-connector-java:5.1.39' } compileJava.options.encoding = 'UTF-8' gretty { httpPort = 8080 contextPath = '/' servletContainer = 'tomcat8' }