Skip to content

Commit cf30727

Browse files
committed
Level xml bind API in REST support
1 parent bd0d40e commit cf30727

File tree

21 files changed

+31
-22
lines changed

21 files changed

+31
-22
lines changed

cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed</artifactId>
17-
<version>3.10.0-SNAPSHOT</version>
17+
<version>3.10.1-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-cli</artifactId>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed</artifactId>
17-
<version>3.10.0-SNAPSHOT</version>
17+
<version>3.10.1-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-core</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<groupId>org.seedstack.seed</groupId>
2121
<artifactId>seed</artifactId>
22-
<version>3.10.0-SNAPSHOT</version>
22+
<version>3.10.1-SNAPSHOT</version>
2323
<packaging>pom</packaging>
2424

2525
<properties>

rest/core/pom.xml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed-rest</artifactId>
17-
<version>3.10.0-SNAPSHOT</version>
17+
<version>3.10.1-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-rest-core</artifactId>
@@ -48,14 +48,23 @@
4848
<groupId>jakarta.activation</groupId>
4949
<artifactId>jakarta.activation-api</artifactId>
5050
</exclusion>
51+
<exclusion>
52+
<groupId>jakarta.xml.bind</groupId>
53+
<artifactId>jakarta.xml.bind-api</artifactId>
54+
</exclusion>
5155
</exclusions>
5256
</dependency>
53-
<!-- Bump activation API to make it even with jersey2 module -->
57+
<!-- Bump activation and xml bind API to make it even with jersey2 module -->
5458
<dependency>
5559
<groupId>jakarta.activation</groupId>
5660
<artifactId>jakarta.activation-api</artifactId>
5761
<version>1.2.2</version>
5862
</dependency>
63+
<dependency>
64+
<groupId>jakarta.xml.bind</groupId>
65+
<artifactId>jakarta.xml.bind-api</artifactId>
66+
<version>2.3.3</version>
67+
</dependency>
5968

6069
<!-- PROVIDED -->
6170
<dependency>

rest/jersey2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed-rest</artifactId>
17-
<version>3.10.0-SNAPSHOT</version>
17+
<version>3.10.1-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-rest-jersey2</artifactId>

rest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.seedstack.seed</groupId>
1515
<artifactId>seed</artifactId>
16-
<version>3.10.0-SNAPSHOT</version>
16+
<version>3.10.1-SNAPSHOT</version>
1717
</parent>
1818

1919
<artifactId>seed-rest</artifactId>

rest/specs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.seedstack.seed</groupId>
1515
<artifactId>seed-rest</artifactId>
16-
<version>3.10.0-SNAPSHOT</version>
16+
<version>3.10.1-SNAPSHOT</version>
1717
</parent>
1818

1919
<artifactId>seed-rest-specs</artifactId>

security/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed-security</artifactId>
17-
<version>3.10.0-SNAPSHOT</version>
17+
<version>3.10.1-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-security-core</artifactId>

security/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed</artifactId>
17-
<version>3.10.0-SNAPSHOT</version>
17+
<version>3.10.1-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-security</artifactId>

security/specs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.seedstack.seed</groupId>
1515
<artifactId>seed-security</artifactId>
16-
<version>3.10.0-SNAPSHOT</version>
16+
<version>3.10.1-SNAPSHOT</version>
1717
</parent>
1818

1919
<artifactId>seed-security-specs</artifactId>

0 commit comments

Comments
 (0)