Skip to content

Commit 51f15e9

Browse files
committed
Use one version, for easier upgrade
1 parent 3f2a203 commit 51f15e9

File tree

1 file changed

+10
-4
lines changed
  • examples/osgi/apache-karaf-feature

1 file changed

+10
-4
lines changed

examples/osgi/apache-karaf-feature/pom.xml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,32 @@
1212
<artifactId>graphql-java-servlet-osgi-examples-karaf-feature</artifactId>
1313
<packaging>feature</packaging>
1414

15+
<properties>
16+
<jackson.version>2.9.8</jackson.version>
17+
</properties>
18+
19+
20+
1521
<dependencies>
1622
<dependency>
1723
<groupId>com.fasterxml.jackson.core</groupId>
1824
<artifactId>jackson-core</artifactId>
19-
<version>2.9.8</version>
25+
<version>${jackson.version}</version>
2026
</dependency>
2127
<dependency>
2228
<groupId>com.fasterxml.jackson.core</groupId>
2329
<artifactId>jackson-annotations</artifactId>
24-
<version>2.9.8</version>
30+
<version>${jackson.version}</version>
2531
</dependency>
2632
<dependency>
2733
<groupId>com.fasterxml.jackson.core</groupId>
2834
<artifactId>jackson-databind</artifactId>
29-
<version>2.9.8</version>
35+
<version>${jackson.version}</version>
3036
</dependency>
3137
<dependency>
3238
<groupId>com.fasterxml.jackson.datatype</groupId>
3339
<artifactId>jackson-datatype-jdk8</artifactId>
34-
<version>2.9.8</version>
40+
<version>${jackson.version}</version>
3541
</dependency>
3642
<dependency>
3743
<groupId>com.google.guava</groupId>

0 commit comments

Comments
 (0)