From eeaab1152b3c690fc6564814d2331420b37a24c6 Mon Sep 17 00:00:00 2001 From: Filtering is added Date: Thu, 9 Apr 2020 20:24:24 +0200 Subject: [PATCH] shadow added --- build.gradle | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/build.gradle b/build.gradle index f3bfa0b..0ab0fba 100644 --- a/build.gradle +++ b/build.gradle @@ -1,11 +1,6 @@ group 'com.visualknight.agent_java_core' version '1.0-SNAPSHOT' -apply plugin: 'java' -apply plugin: "io.freefair.lombok" - -sourceCompatibility = 1.8 - repositories { mavenCentral() maven { @@ -13,19 +8,26 @@ repositories { } } - -dependencies { - compile 'io.aexp.nodes.graphql:nodes:0.5.0' - testCompile group: 'junit', name: 'junit', version: '4.12' -} - buildscript { repositories { maven { url "https://plugins.gradle.org/m2/" } + } dependencies { classpath "io.freefair.gradle:lombok-plugin:5.0.0-rc6" + classpath "com.github.jengelman.gradle.plugins:shadow:5.2.0" } } + +apply plugin: 'java' +apply plugin: "io.freefair.lombok" +apply plugin: "com.github.johnrengelman.shadow" + +sourceCompatibility = 1.8 + +dependencies { + implementation 'io.aexp.nodes.graphql:nodes:0.5.0' + testImplementation group: 'junit', name: 'junit', version: '4.12' +} \ No newline at end of file