|
14 | 14 | <properties>
|
15 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
16 | 16 | <java.version>1.8</java.version>
|
17 |
| - <kotlin.version>1.5.0</kotlin.version> |
18 |
| - <kotlin-coroutines.version>1.5.0-native-mt</kotlin-coroutines.version> |
| 17 | + <kotlin.version>1.6.10</kotlin.version> |
| 18 | + <kotlin-coroutines.version>1.6.0-native-mt</kotlin-coroutines.version> |
19 | 19 | <jackson.version>2.13.1</jackson.version>
|
20 | 20 | <graphql-java.version>17.3</graphql-java.version>
|
| 21 | + <reactive-streams.version>1.0.3</reactive-streams.version> |
21 | 22 |
|
22 | 23 | <maven.compiler.source>${java.version}</maven.compiler.source>
|
23 | 24 | <maven.compiler.target>${java.version}</maven.compiler.target>
|
|
27 | 28 |
|
28 | 29 | <dependencyManagement>
|
29 | 30 | <dependencies>
|
| 31 | + <dependency> |
| 32 | + <groupId>org.jetbrains.kotlin</groupId> |
| 33 | + <artifactId>kotlin-bom</artifactId> |
| 34 | + <version>${kotlin.version}</version> |
| 35 | + <scope>import</scope> |
| 36 | + <type>pom</type> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>org.jetbrains.kotlinx</groupId> |
| 40 | + <artifactId>kotlinx-coroutines-bom</artifactId> |
| 41 | + <version>${kotlin-coroutines.version}</version> |
| 42 | + <scope>import</scope> |
| 43 | + <type>pom</type> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>com.graphql-java</groupId> |
| 47 | + <artifactId>graphql-java</artifactId> |
| 48 | + <version>${graphql-java.version}</version> |
| 49 | + </dependency> |
30 | 50 | <!-- graphql-java defines this dependency as 'runtime', but we need it at compile time -->
|
31 | 51 | <dependency>
|
32 | 52 | <groupId>org.antlr</groupId>
|
33 | 53 | <artifactId>antlr4-runtime</artifactId>
|
34 | 54 | <scope>compile</scope>
|
35 | 55 | </dependency>
|
| 56 | + <dependency> |
| 57 | + <groupId>com.fasterxml.jackson</groupId> |
| 58 | + <artifactId>jackson-bom</artifactId> |
| 59 | + <version>${jackson.version}</version> |
| 60 | + <scope>import</scope> |
| 61 | + <type>pom</type> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>com.fasterxml</groupId> |
| 65 | + <artifactId>classmate</artifactId> |
| 66 | + <version>1.5.1</version> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>org.slf4j</groupId> |
| 70 | + <artifactId>slf4j-api</artifactId> |
| 71 | + <version>1.7.31</version> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>org.apache.commons</groupId> |
| 75 | + <artifactId>commons-lang3</artifactId> |
| 76 | + <version>3.12.0</version> |
| 77 | + </dependency> |
| 78 | + |
| 79 | + <!-- Optional for supporting Javassist proxies --> |
| 80 | + <dependency> |
| 81 | + <groupId>org.javassist</groupId> |
| 82 | + <artifactId>javassist</artifactId> |
| 83 | + <version>3.28.0-GA</version> |
| 84 | + <scope>provided</scope> |
| 85 | + </dependency> |
| 86 | + <!-- Optional for supporting spring proxies --> |
| 87 | + <dependency> |
| 88 | + <groupId>org.springframework</groupId> |
| 89 | + <artifactId>spring-aop</artifactId> |
| 90 | + <version>5.3.15</version> |
| 91 | + <scope>provided</scope> |
| 92 | + </dependency> |
| 93 | + |
| 94 | + <!-- Test --> |
| 95 | + <dependency> |
| 96 | + <groupId>cglib</groupId> |
| 97 | + <artifactId>cglib-nodep</artifactId> |
| 98 | + <version>3.3.0</version> |
| 99 | + </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>ch.qos.logback</groupId> |
| 102 | + <artifactId>logback-classic</artifactId> |
| 103 | + <version>1.2.10</version> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>javax.servlet</groupId> |
| 107 | + <artifactId>javax.servlet-api</artifactId> |
| 108 | + <version>4.0.1</version> |
| 109 | + </dependency> |
| 110 | + <dependency> |
| 111 | + <groupId>junit</groupId> |
| 112 | + <artifactId>junit</artifactId> |
| 113 | + <version>4.13.2</version> |
| 114 | + </dependency> |
| 115 | + <dependency> |
| 116 | + <groupId>org.objenesis</groupId> |
| 117 | + <artifactId>objenesis</artifactId> |
| 118 | + <version>3.2</version> |
| 119 | + </dependency> |
| 120 | + <dependency> |
| 121 | + <groupId>org.reactivestreams</groupId> |
| 122 | + <artifactId>reactive-streams-tck</artifactId> |
| 123 | + <version>${reactive-streams.version}</version> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>org.reactivestreams</groupId> |
| 127 | + <artifactId>reactive-streams</artifactId> |
| 128 | + <version>${reactive-streams.version}</version> |
| 129 | + </dependency> |
36 | 130 | </dependencies>
|
37 | 131 | </dependencyManagement>
|
38 | 132 |
|
39 | 133 | <dependencies>
|
40 | 134 | <dependency>
|
41 | 135 | <groupId>org.jetbrains.kotlin</groupId>
|
42 | 136 | <artifactId>kotlin-stdlib</artifactId>
|
43 |
| - <version>${kotlin.version}</version> |
44 | 137 | </dependency>
|
45 | 138 | <dependency>
|
46 | 139 | <groupId>org.jetbrains.kotlin</groupId>
|
47 | 140 | <artifactId>kotlin-reflect</artifactId>
|
48 |
| - <version>${kotlin.version}</version> |
49 | 141 | </dependency>
|
50 | 142 | <dependency>
|
51 | 143 | <groupId>org.jetbrains.kotlinx</groupId>
|
52 | 144 | <artifactId>kotlinx-coroutines-jdk8</artifactId>
|
53 |
| - <version>${kotlin-coroutines.version}</version> |
54 | 145 | </dependency>
|
55 | 146 | <dependency>
|
56 | 147 | <groupId>org.jetbrains.kotlinx</groupId>
|
57 | 148 | <artifactId>kotlinx-coroutines-core</artifactId>
|
58 |
| - <version>${kotlin-coroutines.version}</version> |
59 | 149 | </dependency>
|
60 | 150 | <dependency>
|
61 | 151 | <groupId>org.jetbrains.kotlinx</groupId>
|
62 | 152 | <artifactId>kotlinx-coroutines-reactive</artifactId>
|
63 |
| - <version>${kotlin-coroutines.version}</version> |
64 | 153 | </dependency>
|
65 | 154 | <dependency>
|
66 | 155 | <groupId>com.graphql-java</groupId>
|
67 | 156 | <artifactId>graphql-java</artifactId>
|
68 |
| - <version>${graphql-java.version}</version> |
69 | 157 | </dependency>
|
70 | 158 | <dependency>
|
71 | 159 | <groupId>com.fasterxml</groupId>
|
72 | 160 | <artifactId>classmate</artifactId>
|
73 |
| - <version>1.5.1</version> |
74 | 161 | </dependency>
|
75 | 162 | <dependency>
|
76 | 163 | <groupId>com.fasterxml.jackson.core</groupId>
|
77 | 164 | <artifactId>jackson-core</artifactId>
|
78 |
| - <version>${jackson.version}</version> |
79 | 165 | </dependency>
|
80 | 166 | <dependency>
|
81 | 167 | <groupId>com.fasterxml.jackson.module</groupId>
|
82 | 168 | <artifactId>jackson-module-kotlin</artifactId>
|
83 |
| - <version>${jackson.version}</version> |
84 |
| - <exclusions> |
85 |
| - <exclusion> |
86 |
| - <groupId>org.jetbrains.kotlin</groupId> |
87 |
| - <artifactId>kotlin-reflect</artifactId> |
88 |
| - </exclusion> |
89 |
| - <exclusion> |
90 |
| - <groupId>org.jetbrains.kotlin</groupId> |
91 |
| - <artifactId>kotlin-stdlib</artifactId> |
92 |
| - </exclusion> |
93 |
| - </exclusions> |
94 | 169 | </dependency>
|
95 | 170 | <dependency>
|
96 | 171 | <groupId>com.fasterxml.jackson.datatype</groupId>
|
97 | 172 | <artifactId>jackson-datatype-jdk8</artifactId>
|
98 |
| - <version>${jackson.version}</version> |
99 | 173 | </dependency>
|
100 | 174 | <dependency>
|
101 | 175 | <groupId>org.apache.commons</groupId>
|
102 | 176 | <artifactId>commons-lang3</artifactId>
|
103 |
| - <version>3.12.0</version> |
104 | 177 | </dependency>
|
105 | 178 | <dependency>
|
106 | 179 | <groupId>org.slf4j</groupId>
|
107 | 180 | <artifactId>slf4j-api</artifactId>
|
108 |
| - <version>1.7.30</version> |
109 | 181 | </dependency>
|
110 | 182 |
|
111 |
| - <!-- Optional for supporting spring proxies --> |
| 183 | + <!-- Optional for supporting proxies --> |
112 | 184 | <dependency>
|
113 | 185 | <groupId>org.springframework</groupId>
|
114 | 186 | <artifactId>spring-aop</artifactId>
|
115 |
| - <version>5.3.15</version> |
116 |
| - <scope>provided</scope> |
117 | 187 | </dependency>
|
118 |
| - |
119 |
| - <!-- Optional for supporting Javassist proxies --> |
120 | 188 | <dependency>
|
121 | 189 | <groupId>org.javassist</groupId>
|
122 | 190 | <artifactId>javassist</artifactId>
|
123 |
| - <version>3.28.0-GA</version> |
124 |
| - <scope>provided</scope> |
125 | 191 | </dependency>
|
126 | 192 |
|
| 193 | + <!-- Test --> |
127 | 194 | <dependency>
|
128 | 195 | <groupId>ch.qos.logback</groupId>
|
129 | 196 | <artifactId>logback-classic</artifactId>
|
130 |
| - <version>1.2.10</version> |
131 | 197 | <scope>test</scope>
|
132 |
| - <exclusions> |
133 |
| - <exclusion> |
134 |
| - <groupId>org.slf4j</groupId> |
135 |
| - <artifactId>slf4j-api</artifactId> |
136 |
| - </exclusion> |
137 |
| - </exclusions> |
138 | 198 | </dependency>
|
139 | 199 | <dependency>
|
140 | 200 | <groupId>junit</groupId>
|
141 | 201 | <artifactId>junit</artifactId>
|
142 |
| - <version>4.13.2</version> |
143 | 202 | <scope>test</scope>
|
144 | 203 | </dependency>
|
145 | 204 | <dependency>
|
146 | 205 | <groupId>cglib</groupId>
|
147 | 206 | <artifactId>cglib-nodep</artifactId>
|
148 |
| - <version>3.3.0</version> |
149 | 207 | <scope>test</scope>
|
150 | 208 | </dependency>
|
151 | 209 | <dependency>
|
152 | 210 | <groupId>org.objenesis</groupId>
|
153 | 211 | <artifactId>objenesis</artifactId>
|
154 |
| - <version>3.2</version> |
155 | 212 | <scope>test</scope>
|
156 | 213 | </dependency>
|
157 | 214 | <dependency>
|
158 | 215 | <groupId>org.reactivestreams</groupId>
|
159 | 216 | <artifactId>reactive-streams-tck</artifactId>
|
160 |
| - <version>1.0.2</version> |
161 | 217 | <scope>test</scope>
|
162 |
| - <exclusions> |
163 |
| - <exclusion> |
164 |
| - <groupId>junit</groupId> |
165 |
| - <artifactId>junit</artifactId> |
166 |
| - </exclusion> |
167 |
| - </exclusions> |
168 | 218 | </dependency>
|
169 | 219 | <dependency>
|
170 | 220 | <groupId>javax.servlet</groupId>
|
171 | 221 | <artifactId>javax.servlet-api</artifactId>
|
172 |
| - <version>4.0.1</version> |
173 | 222 | <scope>test</scope>
|
174 | 223 | </dependency>
|
175 | 224 | </dependencies>
|
|
232 | 281 | </plugin>
|
233 | 282 |
|
234 | 283 | <plugin>
|
| 284 | + <groupId>org.apache.maven.plugins</groupId> |
235 | 285 | <artifactId>maven-surefire-plugin</artifactId>
|
236 | 286 | <version>2.22.2</version>
|
237 | 287 | <dependencies>
|
|
0 commit comments