Skip to content

Commit 5901cf2

Browse files
authored
Merge pull request #61 from jonesbusy/feature/0.3.0
Update to 0.3.0 and depends to jackson3-api plugin
2 parents ed74cf1 + d3326ba commit 5901cf2

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed

pom.xml

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</scm>
3131

3232
<properties>
33-
<revision>0.2.16</revision>
33+
<revision>0.3.0</revision>
3434
<changelist>999999-SNAPSHOT</changelist>
3535
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
3636
<jenkins.baseline>2.504</jenkins.baseline>
@@ -61,7 +61,7 @@
6161
</dependency>
6262
<dependency>
6363
<groupId>io.jenkins.plugins</groupId>
64-
<artifactId>gson-api</artifactId>
64+
<artifactId>jackson3-api</artifactId>
6565
</dependency>
6666
<dependency>
6767
<groupId>io.jenkins.plugins</groupId>
@@ -72,20 +72,16 @@
7272
<artifactId>oras-java-sdk</artifactId>
7373
<version>${revision}</version>
7474
<exclusions>
75+
<!-- provided by jackson3 API plugin -->
76+
<exclusion>
77+
<groupId>com.fasterxml.jackson.core</groupId>
78+
<artifactId>jackson-annotations</artifactId>
79+
</exclusion>
7580
<!-- provided by commons-compress API plugin -->
7681
<exclusion>
7782
<groupId>com.github.luben</groupId>
7883
<artifactId>zstd-jni</artifactId>
7984
</exclusion>
80-
<exclusion>
81-
<groupId>com.google.code.gson</groupId>
82-
<artifactId>gson</artifactId>
83-
</exclusion>
84-
<!-- provided by gson API plugin -->
85-
<exclusion>
86-
<groupId>com.google.code.gson</groupId>
87-
<artifactId>gson</artifactId>
88-
</exclusion>
8985
<!-- provided by commons-compress API plugin -->
9086
<exclusion>
9187
<groupId>org.apache.commons</groupId>
@@ -106,6 +102,16 @@
106102
<groupId>org.slf4j</groupId>
107103
<artifactId>slf4j-api</artifactId>
108104
</exclusion>
105+
<!-- provided by jackson3 API plugin -->
106+
<exclusion>
107+
<groupId>tools.jackson.core</groupId>
108+
<artifactId>jackson-core</artifactId>
109+
</exclusion>
110+
<!-- provided by jackson3 API plugin -->
111+
<exclusion>
112+
<groupId>tools.jackson.core</groupId>
113+
<artifactId>jackson-databind</artifactId>
114+
</exclusion>
109115
</exclusions>
110116
</dependency>
111117
<dependency>

0 commit comments

Comments
 (0)