Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 549987f

Browse files
authored
Merge pull request #388 from BlasiusSecundus/feature/build-script-adjustments
Feature/build script adjustments
2 parents 154f0ea + f204f7c commit 549987f

File tree

9 files changed

+23
-12
lines changed

9 files changed

+23
-12
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,19 +81,19 @@ repositories {
8181
}
8282
8383
dependencies {
84-
compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:7.0.1'
84+
implementation 'com.graphql-java-kickstart:graphql-spring-boot-starter:7.0.1'
8585
8686
// to embed Altair tool
87-
runtime 'com.graphql-java-kickstart:altair-spring-boot-starter:7.0.1'
87+
runtimeOnly 'com.graphql-java-kickstart:altair-spring-boot-starter:7.0.1'
8888
8989
// to embed GraphiQL tool
90-
runtime 'com.graphql-java-kickstart:graphiql-spring-boot-starter:7.0.1'
90+
runtimeOnly 'com.graphql-java-kickstart:graphiql-spring-boot-starter:7.0.1'
9191
9292
// to embed Voyager tool
93-
runtime 'com.graphql-java-kickstart:voyager-spring-boot-starter:7.0.1'
93+
runtimeOnly 'com.graphql-java-kickstart:voyager-spring-boot-starter:7.0.1'
9494
9595
// testing facilities
96-
testCompile 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:7.0.1'
96+
testImplementation 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:7.0.1'
9797
}
9898
```
9999

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ subprojects {
158158
}
159159

160160
artifactory {
161-
contextUrl = 'http://oss.jfrog.org'
161+
contextUrl = 'https://oss.jfrog.org'
162162
publish {
163163
repository {
164164
if (project.version.endsWith("-SNAPSHOT")) {

example-graphql-subscription/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
apply plugin: "org.springframework.boot"
2+
13
dependencies {
24
implementation(project(":graphql-spring-boot-starter"))
35
implementation(project(":graphiql-spring-boot-starter"))

example-graphql-tools/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1818
*/
1919

20+
apply plugin: "org.springframework.boot"
21+
2022
dependencies {
2123
implementation(project(":graphql-spring-boot-starter"))
2224
implementation(project(":graphiql-spring-boot-starter"))

example-request-scoped-dataloader/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
apply plugin: "org.springframework.boot"
2+
13
dependencies {
24
implementation("org.springframework.boot:spring-boot-starter-web")
35
implementation(project(":graphql-spring-boot-starter"))

example-spring-common/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ dependencies{
3535
jar.enabled = false
3636
uploadArchives.enabled = false
3737
bintrayUpload.enabled = false
38+
publishToMavenLocal.enabled = false

example-webflux/build.gradle

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@
1717
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1818
*/
1919

20+
apply plugin: "org.springframework.boot"
21+
2022
dependencies {
21-
compile(project(":graphql-kickstart-spring-boot-starter-webflux"))
22-
compile(project(":graphql-kickstart-spring-boot-starter-tools"))
23-
compile(project(":voyager-spring-boot-starter"))
23+
implementation(project(":graphql-kickstart-spring-boot-starter-webflux"))
24+
implementation(project(":graphql-kickstart-spring-boot-starter-tools"))
25+
implementation(project(":voyager-spring-boot-starter"))
2426

25-
compile("org.springframework.boot:spring-boot-starter-webflux:$LIB_SPRING_BOOT_VER")
26-
compile("org.springframework.boot:spring-boot-starter-actuator:$LIB_SPRING_BOOT_VER")
27+
implementation("org.springframework.boot:spring-boot-starter-webflux:$LIB_SPRING_BOOT_VER")
28+
implementation("org.springframework.boot:spring-boot-starter-actuator:$LIB_SPRING_BOOT_VER")
2729
}
2830

2931
jar.enabled = false

example/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1818
*/
1919

20+
apply plugin: "org.springframework.boot"
21+
2022
dependencies{
2123
implementation(project(":altair-spring-boot-starter"))
2224
implementation(project(":graphql-spring-boot-starter"))
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)