Skip to content

Commit 4d7d30c

Browse files
authored
TCK deps: MP Rest Client API to 3.0.1, JAXB to 3.0.1, BV to 3.0.2 (#560)
Signed-off-by: Michael Edgar <[email protected]>
1 parent 66d8144 commit 4d7d30c

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

pom.xml

+8-6
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,14 @@
3131
<properties>
3232
<inceptionYear>2017</inceptionYear>
3333
<osgi-annotation.version>1.1.1</osgi-annotation.version>
34-
<!-- Versions of TCK dependencies -->
34+
<!-- Versions of TCK dependencies -->
3535
<rest-assured.version>4.3.0</rest-assured.version>
3636
<java-hamcrest.version>2.0.0.0</java-hamcrest.version>
3737
<httpclient.version>4.5.2</httpclient.version>
3838
<jackson.version>2.10.1</jackson.version>
39-
<restclient.version>3.0</restclient.version>
39+
<mp.rest-client-api.version>3.0.1</mp.rest-client-api.version>
40+
<jakarta.xml.bind-api.version>3.0.1</jakarta.xml.bind-api.version>
41+
<jakarta.validation-api.version>3.0.2</jakarta.validation-api.version>
4042
<biz.aQute.bnd.version>5.3.0</biz.aQute.bnd.version>
4143
<version.microprofile.tck.bom>2.6</version.microprofile.tck.bom>
4244
</properties>
@@ -63,13 +65,13 @@
6365
</issueManagement>
6466

6567
<dependencyManagement>
66-
<dependencies>
68+
<dependencies>
6769
<dependency>
6870
<groupId>biz.aQute.bnd</groupId>
6971
<artifactId>biz.aQute.bnd.annotation</artifactId>
7072
<version>${biz.aQute.bnd.version}</version>
7173
<scope>provided</scope>
72-
</dependency>
74+
</dependency>
7375
<dependency>
7476
<groupId>org.osgi</groupId>
7577
<artifactId>org.osgi.annotation.versioning</artifactId>
@@ -81,7 +83,7 @@
8183
<artifactId>microprofile-openapi-api</artifactId>
8284
<version>${project.version}</version>
8385
<scope>provided</scope>
84-
</dependency>
86+
</dependency>
8587
</dependencies>
8688
</dependencyManagement>
8789
<modules>
@@ -90,5 +92,5 @@
9092
<module>spec</module>
9193
<module>spi</module>
9294
</modules>
93-
95+
9496
</project>

tck/pom.xml

+8-8
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<groupId>org.osgi</groupId>
4545
<artifactId>org.osgi.annotation.versioning</artifactId>
4646
</dependency>
47-
47+
4848
<dependency>
4949
<groupId>org.eclipse.microprofile.openapi</groupId>
5050
<artifactId>microprofile-openapi-api</artifactId>
@@ -53,29 +53,29 @@
5353
<dependency>
5454
<groupId>org.eclipse.microprofile.rest.client</groupId>
5555
<artifactId>microprofile-rest-client-api</artifactId>
56-
<version>3.0</version>
56+
<version>${mp.rest-client-api.version}</version>
5757
<scope>provided</scope>
5858
</dependency>
5959

6060
<dependency>
6161
<groupId>jakarta.xml.bind</groupId>
6262
<artifactId>jakarta.xml.bind-api</artifactId>
63-
<version>3.0.0</version>
63+
<version>${jakarta.xml.bind-api.version}</version>
6464
<scope>provided</scope>
6565
</dependency>
6666

6767
<dependency>
6868
<groupId>jakarta.validation</groupId>
6969
<artifactId>jakarta.validation-api</artifactId>
70-
<version>3.0.0</version>
70+
<version>${jakarta.validation-api.version}</version>
7171
<scope>provided</scope>
7272
</dependency>
73-
73+
7474
<dependency>
7575
<groupId>jakarta.ws.rs</groupId>
7676
<artifactId>jakarta.ws.rs-api</artifactId>
7777
</dependency>
78-
78+
7979
<dependency>
8080
<groupId>org.testng</groupId>
8181
<artifactId>testng</artifactId>
@@ -121,7 +121,7 @@
121121
<version>${jackson.version}</version>
122122
</dependency>
123123
</dependencies>
124-
124+
125125
<build>
126126
<plugins>
127127
<plugin>
@@ -133,5 +133,5 @@
133133
</plugin>
134134
</plugins>
135135
</build>
136-
136+
137137
</project>

0 commit comments

Comments
 (0)