Skip to content

Commit 6f4d1e0

Browse files
shauvikSrinivasanTarget
authored andcommitted
new gradle plugins block + fatJar (#560)
* new gradle plugins block + fatJar * Adding support for the new gradle plugins block * Using the shadow plugin to create a fatJar for appium java client. * reverting change shadow is only on jcenter. So, need to add it to buildscript for satisfying dependency. * fix repo
1 parent 901ec6b commit 6f4d1e0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,19 @@ repositories {
1818

1919
buildscript {
2020
repositories {
21+
jcenter()
2122
maven {
2223
url "http://repo.maven.apache.org/maven2"
2324
}
2425
}
2526
dependencies {
2627
classpath "org.owasp:dependency-check-gradle:1.4.0"
28+
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.4'
2729
}
2830
}
2931

3032
apply plugin: "org.owasp.dependencycheck"
33+
apply plugin: 'com.github.johnrengelman.shadow'
3134

3235
configurations {
3336
ecj

0 commit comments

Comments
 (0)