allprojects { repositories { mavenCentral() maven { url "https://jitpack.io" } } } buildscript { repositories { mavenCentral() jcenter() } dependencies { classpath 'org.akhikhl.gretty:gretty:+' classpath 'com.github.ben-manes:gradle-versions-plugin:0.13.0' } } apply plugin: 'java' repositories { jcenter() } dependencies { testCompile project(':juick-core') testCompile project(':juick-www') testCompile project(':juick-xmpp') testCompile 'com.fasterxml.jackson.core:jackson-core:2.8.1' testCompile 'com.fasterxml.jackson.core:jackson-databind:2.8.1' testCompile 'org.springframework:spring-jdbc:4.3.4.RELEASE' testCompile 'ch.vorburger.mariaDB4j:mariaDB4j:2.2.2' testCompile 'org.slf4j:slf4j-api:1.7.21' testCompile 'junit:junit:4.12' testRuntime 'mysql:mysql-connector-java:5.1.40' } compileJava.options.encoding = 'UTF-8'