File tree Expand file tree Collapse file tree 3 files changed +5
-11
lines changed Expand file tree Collapse file tree 3 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ plugins {
3636 id ' net.researchgate.release' version ' 2.7.0'
3737 id ' io.franzbecker.gradle-lombok' version ' 3.2.0' apply false
3838 id " com.jfrog.artifactory" version " 4.8.1" apply false
39+ id " biz.aQute.bnd" version " 4.3.1" apply false
3940}
4041
4142subprojects {
@@ -216,6 +217,6 @@ task build {
216217 dependsOn subprojects. findResults { it. tasks. findByName(' bintray' ) }
217218}
218219
219- task wrapper ( type : Wrapper ) {
220+ wrapper {
220221 gradleVersion = " ${ GRADLE_WRAPPER_VER} "
221222}
Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ buildscript {
33 jcenter()
44 mavenCentral()
55 }
6- dependencies {
7- classpath ' biz.aQute.bnd:biz.aQute.bnd.gradle:3.1.0'
8- }
96}
107
118apply plugin : ' groovy'
@@ -14,18 +11,12 @@ apply plugin: 'java-library-distribution'
1411apply plugin : ' biz.aQute.bnd.builder'
1512
1613jar {
17- manifest {
18- instruction ' Require-Capability' , ' osgi.extender'
19- }
14+ bnd (' Require-Capability' : ' osgi.extender' )
2015}
2116
22- // afterReleaseBuild.dependsOn bintrayUpload
23-
2417dependencies {
2518 compile(project(' :graphql-java-kickstart' ))
2619
27- // compile 'org.slf4j:slf4j-api:1.7.21'
28-
2920 // Useful utilities
3021 compile ' com.google.guava:guava:24.1.1-jre'
3122
Original file line number Diff line number Diff line change 1+ enableFeaturePreview(' STABLE_PUBLISHING' )
2+
13rootProject. name = ' graphql-java-servlet'
24
35include ' :graphql-java-kickstart'
You can’t perform that action at this time.
0 commit comments