File tree 2 files changed +37
-6
lines changed
2 files changed +37
-6
lines changed Original file line number Diff line number Diff line change 15
15
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
16
16
<java .version>11</java .version>
17
17
<kotlin .version>1.8.21</kotlin .version>
18
- <kotlin-coroutines .version>1.6.4 </kotlin-coroutines .version>
18
+ <kotlin-coroutines .version>1.7.3 </kotlin-coroutines .version>
19
19
<jackson .version>2.15.2</jackson .version>
20
20
<graphql-java .version>21.0</graphql-java .version>
21
21
<reactive-streams .version>1.0.4</reactive-streams .version>
134
134
<dependency >
135
135
<groupId >org.jetbrains.kotlin</groupId >
136
136
<artifactId >kotlin-stdlib</artifactId >
137
+ <!-- TODO remove this after upgrading kotlin-->
138
+ <exclusions >
139
+ <exclusion >
140
+ <groupId >org.jetbrains</groupId >
141
+ <artifactId >annotations</artifactId >
142
+ </exclusion >
143
+ </exclusions >
137
144
</dependency >
138
145
<dependency >
139
146
<groupId >org.jetbrains.kotlin</groupId >
140
147
<artifactId >kotlin-reflect</artifactId >
141
148
</dependency >
142
149
<dependency >
150
+ <!--
151
+ Depending on kotlinx-coroutines-core causes an ambiguous module reference warning.
152
+ See https://github.com/Kotlin/kotlinx.coroutines/issues/3842
153
+ -->
143
154
<groupId >org.jetbrains.kotlinx</groupId >
144
- <artifactId >kotlinx-coroutines-jdk8</artifactId >
145
- </dependency >
146
- <dependency >
147
- <groupId >org.jetbrains.kotlinx</groupId >
148
- <artifactId >kotlinx-coroutines-core</artifactId >
155
+ <artifactId >kotlinx-coroutines-core-jvm</artifactId >
149
156
</dependency >
150
157
<dependency >
151
158
<groupId >org.jetbrains.kotlinx</groupId >
Original file line number Diff line number Diff line change
1
+ module graphql .java .tools {
2
+ requires kotlin .stdlib ;
3
+ requires kotlin .reflect ;
4
+ requires kotlinx .coroutines .core ;
5
+ requires kotlinx .coroutines .reactive ;
6
+
7
+ requires com .graphqljava ;
8
+
9
+ requires com .fasterxml .jackson .core ;
10
+ requires com .fasterxml .jackson .kotlin ;
11
+ requires com .fasterxml .jackson .databind ;
12
+ requires com .fasterxml .jackson .datatype .jdk8 ;
13
+ requires com .fasterxml .classmate ;
14
+
15
+ requires org .antlr .antlr4 .runtime ;
16
+ requires org .apache .commons .lang3 ;
17
+ requires org .reactivestreams ;
18
+ requires org .slf4j ;
19
+ requires spring .aop ;
20
+
21
+ exports graphql .kickstart .tools ;
22
+
23
+ opens graphql .kickstart .tools to com .fasterxml .jackson .databind ;
24
+ }
You can’t perform that action at this time.
0 commit comments