Skip to content

Commit eeaab11

Browse files
committed
shadow added
1 parent 098285e commit eeaab11

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

build.gradle

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,33 @@
11
group 'com.visualknight.agent_java_core'
22
version '1.0-SNAPSHOT'
33

4-
apply plugin: 'java'
5-
apply plugin: "io.freefair.lombok"
6-
7-
sourceCompatibility = 1.8
8-
94
repositories {
105
mavenCentral()
116
maven {
127
url 'https://dl.bintray.com/americanexpress/maven/'
138
}
149
}
1510

16-
17-
dependencies {
18-
compile 'io.aexp.nodes.graphql:nodes:0.5.0'
19-
testCompile group: 'junit', name: 'junit', version: '4.12'
20-
}
21-
2211
buildscript {
2312
repositories {
2413
maven {
2514
url "https://plugins.gradle.org/m2/"
2615
}
16+
2717
}
2818
dependencies {
2919
classpath "io.freefair.gradle:lombok-plugin:5.0.0-rc6"
20+
classpath "com.github.jengelman.gradle.plugins:shadow:5.2.0"
3021
}
3122
}
23+
24+
apply plugin: 'java'
25+
apply plugin: "io.freefair.lombok"
26+
apply plugin: "com.github.johnrengelman.shadow"
27+
28+
sourceCompatibility = 1.8
29+
30+
dependencies {
31+
implementation 'io.aexp.nodes.graphql:nodes:0.5.0'
32+
testImplementation group: 'junit', name: 'junit', version: '4.12'
33+
}

0 commit comments

Comments
 (0)