[Java 11503] (#12626)
* [JAVA-11503] Created new vertx-modules * [JAVA-11503] Moved vertx(sub-module) to vertx-modules(parent) * [JAVA-11503] Moved spring-vertx(sub-module) to vertx-modules(parent) * [JAVA-11503] Moved vertx-and-java(sub-module) to vertx-modules(parent) * [JAVA-11503] deleted modules that were moved Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com>
This commit is contained in:
parent
3ce04cafd5
commit
f391cba986
8
pom.xml
8
pom.xml
|
@ -610,7 +610,6 @@
|
|||
<module>spring-threads</module>
|
||||
|
||||
<module>spring-vault</module>
|
||||
<module>spring-vertx</module>
|
||||
|
||||
<module>spring-web-modules</module>
|
||||
<module>spring-webflux-amqp</module> <!-- long -->
|
||||
|
@ -627,8 +626,7 @@
|
|||
|
||||
<module>undertow</module>
|
||||
|
||||
<module>vertx</module>
|
||||
<module>vertx-and-rxjava</module>
|
||||
<module>vertx-modules</module>
|
||||
<module>video-tutorials</module>
|
||||
|
||||
<module>webrtc</module>
|
||||
|
@ -1003,7 +1001,6 @@
|
|||
<module>spring-threads</module>
|
||||
|
||||
<module>spring-vault</module>
|
||||
<module>spring-vertx</module>
|
||||
|
||||
<module>spring-web-modules</module>
|
||||
<module>spring-webflux-amqp</module> <!-- long -->
|
||||
|
@ -1020,8 +1017,7 @@
|
|||
|
||||
<module>undertow</module>
|
||||
|
||||
<module>vertx</module>
|
||||
<module>vertx-and-rxjava</module>
|
||||
<module>vertx-modules</module>
|
||||
<module>video-tutorials</module>
|
||||
|
||||
<module>webrtc</module>
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
## VERTX
|
||||
|
||||
This module contains modules about VERTX.
|
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>vertx-modules</artifactId>
|
||||
<name>vertx-modules</name>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<parent>
|
||||
<artifactId>parent-modules</artifactId>
|
||||
<groupId>com.baeldung</groupId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<modules>
|
||||
<module>vertx</module>
|
||||
<module>spring-vertx</module>
|
||||
<module>vertx-and-rxjava</module>
|
||||
</modules>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
|
||||
</project>
|
|
@ -12,7 +12,7 @@
|
|||
<groupId>com.baeldung</groupId>
|
||||
<artifactId>parent-boot-2</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../parent-boot-2</relativePath>
|
||||
<relativePath>../../parent-boot-2</relativePath>
|
||||
</parent>
|
||||
|
||||
<dependencies>
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<parent>
|
||||
<groupId>com.baeldung</groupId>
|
||||
<artifactId>parent-modules</artifactId>
|
||||
<artifactId>vertx-modules</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<parent>
|
||||
<groupId>com.baeldung</groupId>
|
||||
<artifactId>parent-modules</artifactId>
|
||||
<artifactId>vertx-modules</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
Loading…
Reference in New Issue