diff --git a/build.gradle b/build.gradle index 264bde7..f06edc5 100644 --- a/build.gradle +++ b/build.gradle @@ -29,9 +29,6 @@ group 'com.github.mc1arke.sonarqube.plugin' repositories { mavenCentral() - maven { - url 'https://dl.bintray.com/americanexpress/maven/' - } ivy { url 'https://binaries.sonarsource.com/' patternLayout({a -> @@ -64,9 +61,8 @@ dependencies { testCompile group: 'com.github.tomakehurst', name: 'wiremock', version: '2.24.1' zip "sonarqube:sonarqube:${sonarqubeVersion}@zip" compile 'org.bouncycastle:bcpkix-jdk15on:1.62' - compile('io.aexp.nodes.graphql:nodes:0.5.0') { - exclude group: 'com.fasterxml.jackson.core' - } + compile files('lib/nodes-0.5.0.jar') + runtime 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.7' compileOnly 'com.google.code.findbugs:jsr305:3.0.2' } diff --git a/lib/nodes-0.5.0.jar b/lib/nodes-0.5.0.jar new file mode 100644 index 0000000..ff26901 Binary files /dev/null and b/lib/nodes-0.5.0.jar differ