File tree Expand file tree Collapse file tree 4 files changed +14
-9
lines changed
examples/osgi/apache-karaf-feature Expand file tree Collapse file tree 4 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ to see what's needed to create a Servlet with a schema.
54
54
55
55
## Using the latest development build
56
56
57
- Snapshot versions of the current ` master ` branch are availble on JFrog. Check the next snapshot version in
57
+ Snapshot versions of the current ` master ` branch are available on JFrog. Check the next snapshot version in
58
58
[ gradle.properties] ( https://github.com/graphql-java-kickstart/graphql-java-servlet/blob/master/gradle.properties ) .
59
59
60
60
### Build with Gradle
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ dependencies {
33
33
compile ' org.slf4j:slf4j-api:1.7.21'
34
34
35
35
// Useful utilities
36
- compile ' com.google.guava:guava:20.0 '
36
+ compile ' com.google.guava:guava:24.1.1-jre '
37
37
38
38
// Unit testing
39
39
testCompile " org.codehaus.groovy:groovy-all:2.4.1"
Original file line number Diff line number Diff line change 12
12
<artifactId >graphql-java-servlet-osgi-examples-karaf-feature</artifactId >
13
13
<packaging >feature</packaging >
14
14
15
- <dependencies >
15
+ <properties >
16
+ <jackson .version>2.9.8</jackson .version>
17
+ </properties >
18
+
16
19
20
+
21
+ <dependencies >
17
22
<dependency >
18
23
<groupId >com.fasterxml.jackson.core</groupId >
19
24
<artifactId >jackson-core</artifactId >
20
- <version >2.8.11 </version >
25
+ <version >${jackson.version} </version >
21
26
</dependency >
22
27
<dependency >
23
28
<groupId >com.fasterxml.jackson.core</groupId >
24
29
<artifactId >jackson-annotations</artifactId >
25
- <version >2.8.11 </version >
30
+ <version >${jackson.version} </version >
26
31
</dependency >
27
32
<dependency >
28
33
<groupId >com.fasterxml.jackson.core</groupId >
29
34
<artifactId >jackson-databind</artifactId >
30
- <version >2.8.11 </version >
35
+ <version >${jackson.version} </version >
31
36
</dependency >
32
37
<dependency >
33
38
<groupId >com.fasterxml.jackson.datatype</groupId >
34
39
<artifactId >jackson-datatype-jdk8</artifactId >
35
- <version >2.8.11 </version >
40
+ <version >${jackson.version} </version >
36
41
</dependency >
37
42
<dependency >
38
43
<groupId >com.google.guava</groupId >
39
44
<artifactId >guava</artifactId >
40
- <version >20.0 </version >
45
+ <version >24.1.1-jre </version >
41
46
</dependency >
42
47
<dependency >
43
48
<groupId >commons-fileupload</groupId >
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ version = 7.2.1-SNAPSHOT
2
2
group = com.graphql-java-kickstart
3
3
4
4
LIB_GRAPHQL_JAVA_VER = 11.0
5
- LIB_JACKSON_VER = 2.9.7
5
+ LIB_JACKSON_VER = 2.9.8
You can’t perform that action at this time.
0 commit comments