My gradient is configured like this:
plugins {
id 'java'
}
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile project (':core')
compile group: 'org.fusesource', name: 'sigar', version: '1.6.4',
compile 'com.fasterxml.jackson.core:jackson-core:2.7.1',
compile 'com.fasterxml.jackson.core:jackson-databind:2.7.1-1',
testCompile group: 'com.sun.net.httpserver', name: 'http', version: '20070405',
compile 'org.apache.httpcomponents:httpclient:4.5.5';
}
And it returns an error while updating. I'm starting now, could anyone help me? I'm using IntelliJ