Skip to content

Commit

Permalink
shadow added
Browse files Browse the repository at this point in the history
  • Loading branch information
pashidlos committed Apr 9, 2020
1 parent 098285e commit eeaab11
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,31 +1,33 @@
group 'com.visualknight.agent_java_core'
version '1.0-SNAPSHOT'

apply plugin: 'java'
apply plugin: "io.freefair.lombok"

sourceCompatibility = 1.8

repositories {
mavenCentral()
maven {
url 'https://dl.bintray.com/americanexpress/maven/'
}
}


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'
}

0 comments on commit eeaab11

Please sign in to comment.