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

Commit 078b2c4

Browse files
authored
Merge pull request #213 from breun/master
Import web UI modules with scope 'runtime'
2 parents 95d880a + 056d805 commit 078b2c4

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ dependencies {
7474
compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:5.7.0'
7575
7676
// to embed Altair tool
77-
compile 'com.graphql-java-kickstart:altair-spring-boot-starter:5.7.0'
77+
runtime 'com.graphql-java-kickstart:altair-spring-boot-starter:5.7.0'
7878
7979
// to embed GraphiQL tool
80-
compile 'com.graphql-java-kickstart:graphiql-spring-boot-starter:5.7.0'
80+
runtime 'com.graphql-java-kickstart:graphiql-spring-boot-starter:5.7.0'
8181
8282
// to embed Voyager tool
83-
compile 'com.graphql-java-kickstart:voyager-spring-boot-starter:5.7.0'
83+
runtime 'com.graphql-java-kickstart:voyager-spring-boot-starter:5.7.0'
8484
8585
// testing facilities
8686
testCompile 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:5.7.0'
@@ -100,20 +100,23 @@ Maven:
100100
<groupId>com.graphql-java-kickstart</groupId>
101101
<artifactId>altair-spring-boot-starter</artifactId>
102102
<version>5.7.0</version>
103+
<scope>runtime</scope>
103104
</dependency>
104105

105106
<!-- to embed GraphiQL tool -->
106107
<dependency>
107108
<groupId>com.graphql-java-kickstart</groupId>
108109
<artifactId>graphiql-spring-boot-starter</artifactId>
109110
<version>5.7.0</version>
111+
<scope>runtime</scope>
110112
</dependency>
111113

112114
<!-- to embed Voyager tool -->
113115
<dependency>
114116
<groupId>com.graphql-java-kickstart</groupId>
115117
<artifactId>voyager-spring-boot-starter</artifactId>
116118
<version>5.7.0</version>
119+
<scope>runtime</scope>
117120
</dependency>
118121

119122
<!-- testing facilities -->

0 commit comments

Comments
 (0)