-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathpom.xml
More file actions
46 lines (38 loc) · 1.65 KB
/
pom.xml
File metadata and controls
46 lines (38 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>cloudevents-http-restful-ws-jakarta-integration-tests</artifactId>
<groupId>io.cloudevents</groupId>
<version>4.1.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cloudevents-http-restful-ws-jakarta-integration-tests-resteasy</artifactId>
<name>CloudEvents - JAX-RS Jakarta EE9+ Integration Tests - RESTEasy</name>
<packaging>jar</packaging>
<properties>
<module-name>cloudevents.http.restful.ws.jakarta.integration.tests.resteasy</module-name>
<vertx.version>5.0.10</vertx.version>
<resteasy.version>6.0.3.Final</resteasy.version>
</properties>
<dependencies>
<dependency>
<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-http-restful-ws-jakarta-integration-tests-common</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<version>${vertx.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-vertx</artifactId>
<version>${resteasy.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>