allprojects { repositories { mavenCentral() maven { url "https://jitpack.io" } } } project.ext { springFrameworkVersion = '4.3.7.RELEASE' springSecurityVersion = '4.2.2.RELEASE' jacksonVersion = '2.8.7' slf4jVersion = '1.7.24' logbackVersion = '1.2.1' junitVersion = "4.12" hamcrestVersion= "1.3" mockitoVersion = "2.7.17" } 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 "org.json:json:20160810" testCompile "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}" testCompile "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}" testCompile "org.springframework:spring-jdbc:${springFrameworkVersion}" testCompile "org.springframework:spring-test:${springFrameworkVersion}" testCompile "ch.vorburger.mariaDB4j:mariaDB4j:2.2.2" testCompile "org.slf4j:slf4j-api:${slf4jVersion}" testCompile "junit:junit:${junitVersion}" testCompile "org.hamcrest:hamcrest-all:${hamcrestVersion}" testCompile "org.mockito:mockito-core:${mockitoVersion}" testRuntime "mysql:mysql-connector-java:5.1.40" } compileJava.options.encoding = 'UTF-8'