Hey!
Gradle could not download the artifact. GitHub says version 2.0.0 was released in April, but the artifacts seems missing: https://search.maven.org/#search|ga|1|petitparser
Snippet from my build.gradle:
repositories {
mavenCentral()
}
dependencies {
compile "org.codehaus.groovy:groovy-all:2.4.3"
compile "com.github.petitparser:petitparser-core:2.0.0"
testCompile "junit:junit:4.12"
}
Hey!
Gradle could not download the artifact. GitHub says version 2.0.0 was released in April, but the artifacts seems missing: https://search.maven.org/#search|ga|1|petitparser
Snippet from my
build.gradle:repositories { mavenCentral() } dependencies { compile "org.codehaus.groovy:groovy-all:2.4.3" compile "com.github.petitparser:petitparser-core:2.0.0" testCompile "junit:junit:4.12" }