2019-10-31 20:43:47 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-17 20:21:04 +05:30
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
2019-10-31 20:43:47 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>vertx-and-rxjava</artifactId>
|
2019-12-05 16:56:52 +02:00
|
|
|
<name>vertx-and-rxjava</name>
|
|
|
|
|
2019-10-31 20:43:47 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2022-08-25 16:48:34 +01:00
|
|
|
<artifactId>vertx-modules</artifactId>
|
2019-10-31 20:43:47 -05:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-rx-java2</artifactId>
|
|
|
|
<version>${vertx.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-core</artifactId>
|
|
|
|
<version>${vertx.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-unit</artifactId>
|
|
|
|
<version>${vertx.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
2023-05-17 16:55:48 +03:00
|
|
|
<vertx.version>3.9.15</vertx.version>
|
2019-10-31 20:43:47 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|