Skip to content

Commit 99bdb2c

Browse files
committed
Added jackson
1 parent 1681be4 commit 99bdb2c

File tree

1 file changed

+27
-3
lines changed

1 file changed

+27
-3
lines changed

pom.xml

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<artifactId>plugin</artifactId>
88
<version>2.11</version>
99
</parent>
10-
<groupId>org.jenkins-ci.plugins</groupId>
1110
<artifactId>gogs-webhook</artifactId>
1211
<version>1.0.15-SNAPSHOT</version>
1312
<packaging>hpi</packaging>
@@ -23,6 +22,9 @@
2322
<!-- Security -->
2423
<owasp.version>3.1.2</owasp.version>
2524
<findbugs.failOnError>false</findbugs.failOnError>
25+
26+
<!-- Jackson -->
27+
<jackson.version>2.9.5</jackson.version>
2628
</properties>
2729

2830
<name>Jenkins Gogs plugin</name>
@@ -55,18 +57,28 @@
5557
<dependency>
5658
<groupId>org.jenkins-ci.plugins</groupId>
5759
<artifactId>git</artifactId>
58-
<version>2.2.5</version>
60+
<version>3.8.0</version>
5961
</dependency>
6062
<dependency>
6163
<groupId>org.apache.httpcomponents</groupId>
6264
<artifactId>httpclient</artifactId>
63-
<version>4.5.1</version>
65+
<version>4.5.5</version>
6466
</dependency>
6567
<dependency>
6668
<groupId>commons-codec</groupId>
6769
<artifactId>commons-codec</artifactId>
6870
<version>1.10</version>
6971
</dependency>
72+
<dependency>
73+
<groupId>com.fasterxml.jackson.core</groupId>
74+
<artifactId>jackson-annotations</artifactId>
75+
<version>${jackson.version}</version>
76+
</dependency>
77+
<dependency>
78+
<groupId>com.fasterxml.jackson.core</groupId>
79+
<artifactId>jackson-databind</artifactId>
80+
<version>${jackson.version}</version>
81+
</dependency>
7082
<dependency>
7183
<groupId>junit</groupId>
7284
<artifactId>junit</artifactId>
@@ -108,6 +120,18 @@
108120
<version>6.3</version>
109121
<scope>test</scope>
110122
</dependency>
123+
<dependency>
124+
<groupId>com.fasterxml.jackson.core</groupId>
125+
<artifactId>jackson-databind</artifactId>
126+
<version>2.8.3</version>
127+
<scope>compile</scope>
128+
</dependency>
129+
<dependency>
130+
<groupId>com.fasterxml.jackson.core</groupId>
131+
<artifactId>jackson-databind</artifactId>
132+
<version>2.8.3</version>
133+
<scope>compile</scope>
134+
</dependency>
111135
</dependencies>
112136

113137
<build>

0 commit comments

Comments
 (0)