-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (31 loc) · 811 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
group 'com.visualknight.agent_java_core'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'https://dl.bintray.com/americanexpress/maven/'
}
}
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: 'org.testng', name: 'testng', version: '7.1.0'
testImplementation 'commons-io:commons-io:2.6'
}
test{
useTestNG()
}