diff --git a/micronaut/pom.xml b/micronaut/pom.xml
index 2a8d135483..02ac36218d 100644
--- a/micronaut/pom.xml
+++ b/micronaut/pom.xml
@@ -1,136 +1,142 @@
- 4.0.0
- com.baeldung.micronaut
- micronaut
- 0.1
- micronaut
+ 4.0.0
+ com.baeldung.micronaut
+ micronaut
+ 0.1
+ micronaut
-
-
-
- io.micronaut
- bom
- ${micronaut.version}
- pom
- import
-
-
-
-
-
- io.micronaut
- http-client
- compile
-
-
- io.micronaut
- http-server-netty
- compile
-
-
- io.micronaut
- inject
- compile
-
-
- io.micronaut
- runtime
- compile
-
-
- javax.annotation
- javax.annotation-api
- 1.3.2
- compile
-
-
- io.micronaut
- inject-java
- provided
-
-
- ch.qos.logback
- logback-classic
- 1.2.3
- runtime
-
-
- junit
- junit
- 4.12
- test
-
-
- io.projectreactor
- reactor-core
- 3.1.6.RELEASE
-
-
-
-
-
- org.apache.maven.plugins
- maven-shade-plugin
- 3.1.0
-
-
- package
-
- shade
-
-
-
-
- ${exec.mainClass}
-
-
-
-
-
-
-
-
- org.codehaus.mojo
- exec-maven-plugin
- 1.6.0
-
- java
-
- -classpath
-
- ${exec.mainClass}
-
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-compiler-plugin
- 3.7.0
-
- ${jdk.version}
- ${jdk.version}
-
- -parameters
-
-
-
+
+ com.baeldung
+ parent-modules
+ 1.0.0-SNAPSHOT
+
+
+
+
+
io.micronaut
- inject-java
+ bom
${micronaut.version}
-
-
-
-
-
-
-
-
-
- com.baeldung.micronaut.helloworld.server.ServerApplication
- 1.0.0.RC2
- 1.8
-
+ pom
+ import
+
+
+
+
+
+ io.micronaut
+ http-client
+ compile
+
+
+ io.micronaut
+ http-server-netty
+ compile
+
+
+ io.micronaut
+ inject
+ compile
+
+
+ io.micronaut
+ runtime
+ compile
+
+
+ javax.annotation
+ javax.annotation-api
+ 1.3.2
+ compile
+
+
+ io.micronaut
+ inject-java
+ provided
+
+
+ ch.qos.logback
+ logback-classic
+ 1.2.3
+ runtime
+
+
+ junit
+ junit
+ 4.12
+ test
+
+
+ io.projectreactor
+ reactor-core
+ 3.1.6.RELEASE
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-shade-plugin
+ 3.1.0
+
+
+ package
+
+ shade
+
+
+
+
+ ${exec.mainClass}
+
+
+
+
+
+
+
+
+ org.codehaus.mojo
+ exec-maven-plugin
+ 1.6.0
+
+ java
+
+ -classpath
+
+ ${exec.mainClass}
+
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+ 3.7.0
+
+ ${jdk.version}
+ ${jdk.version}
+
+ -parameters
+
+
+
+ io.micronaut
+ inject-java
+ ${micronaut.version}
+
+
+
+
+
+
+
+
+
+ com.baeldung.micronaut.helloworld.server.ServerApplication
+ 1.0.0.RC2
+ 1.8
+
diff --git a/micronaut/src/test/java/com/baeldung/micronaut/helloworld/client/ConcreteGreetingClientTest.java b/micronaut/src/test/java/com/baeldung/micronaut/helloworld/client/ConcreteGreetingClientUnitTest.java
similarity index 95%
rename from micronaut/src/test/java/com/baeldung/micronaut/helloworld/client/ConcreteGreetingClientTest.java
rename to micronaut/src/test/java/com/baeldung/micronaut/helloworld/client/ConcreteGreetingClientUnitTest.java
index c8c1d6b12a..336374d5a6 100644
--- a/micronaut/src/test/java/com/baeldung/micronaut/helloworld/client/ConcreteGreetingClientTest.java
+++ b/micronaut/src/test/java/com/baeldung/micronaut/helloworld/client/ConcreteGreetingClientUnitTest.java
@@ -8,7 +8,7 @@ import org.junit.Test;
import static junit.framework.TestCase.assertEquals;
-public class ConcreteGreetingClientTest
+public class ConcreteGreetingClientUnitTest
{
private EmbeddedServer server;
private ConcreteGreetingClient client;
diff --git a/micronaut/src/test/java/com/baeldung/micronaut/helloworld/client/GreetingClientTest.java b/micronaut/src/test/java/com/baeldung/micronaut/helloworld/client/GreetingClientUnitTest.java
similarity index 94%
rename from micronaut/src/test/java/com/baeldung/micronaut/helloworld/client/GreetingClientTest.java
rename to micronaut/src/test/java/com/baeldung/micronaut/helloworld/client/GreetingClientUnitTest.java
index 0f2ca460ac..c47fb3a31d 100644
--- a/micronaut/src/test/java/com/baeldung/micronaut/helloworld/client/GreetingClientTest.java
+++ b/micronaut/src/test/java/com/baeldung/micronaut/helloworld/client/GreetingClientUnitTest.java
@@ -8,7 +8,7 @@ import org.junit.Test;
import static junit.framework.TestCase.assertEquals;
-public class GreetingClientTest {
+public class GreetingClientUnitTest {
private EmbeddedServer server;
private GreetingClient client;
diff --git a/persistence-modules/jnosql/pom.xml b/persistence-modules/jnosql/pom.xml
index 513a447b91..91ceddaadd 100644
--- a/persistence-modules/jnosql/pom.xml
+++ b/persistence-modules/jnosql/pom.xml
@@ -9,6 +9,13 @@
jnosql
pom
+
+ com.baeldung
+ parent-modules
+ 1.0.0-SNAPSHOT
+ ../../
+
+
jnosql-diana
jnosql-artemis
diff --git a/quarkus/pom.xml b/quarkus/pom.xml
index 5190d0932a..31e3c8f8a0 100644
--- a/quarkus/pom.xml
+++ b/quarkus/pom.xml
@@ -1,115 +1,121 @@
- 4.0.0
- com.baeldung.quarkus
- quarkus
- 1.0-SNAPSHOT
- quarkus
-
-
- 2.22.0
- 0.15.0
- 1.8
- UTF-8
- 1.8
-
-
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ 4.0.0
+ com.baeldung.quarkus
+ quarkus
+ 1.0-SNAPSHOT
+ quarkus
+
+
+ com.baeldung
+ parent-modules
+ 1.0.0-SNAPSHOT
+
+
+
+ 2.22.0
+ 0.15.0
+ 1.8
+ UTF-8
+ 1.8
+
+
+
+
+ io.quarkus
+ quarkus-bom
+ ${quarkus.version}
+ pom
+ import
+
+
+
-
- io.quarkus
- quarkus-bom
- ${quarkus.version}
- pom
- import
-
-
-
-
-
- io.quarkus
- quarkus-resteasy
-
-
- io.quarkus
- quarkus-junit5
- test
-
-
- io.rest-assured
- rest-assured
- test
-
-
-
-
-
- io.quarkus
- quarkus-maven-plugin
- ${quarkus.version}
-
-
-
- build
-
-
-
-
-
- maven-surefire-plugin
- ${surefire-plugin.version}
-
-
- org.jboss.logmanager.LogManager
-
-
-
-
-
-
-
- native
-
-
- native
-
-
-
-
-
+
io.quarkus
- quarkus-maven-plugin
- ${quarkus.version}
-
-
-
- native-image
-
+ quarkus-resteasy
+
+
+ io.quarkus
+ quarkus-junit5
+ test
+
+
+ io.rest-assured
+ rest-assured
+ test
+
+
+
+
+
+ io.quarkus
+ quarkus-maven-plugin
+ ${quarkus.version}
+
+
+
+ build
+
+
+
+
+
+ maven-surefire-plugin
+ ${surefire-plugin.version}
- true
+
+ org.jboss.logmanager.LogManager
+
-
-
-
-
- maven-failsafe-plugin
- ${surefire-plugin.version}
-
-
-
- integration-test
- verify
-
-
-
- ${project.build.directory}/${project.build.finalName}-runner
-
-
-
-
-
+
-
-
-
+
+
+
+ native
+
+
+ native
+
+
+
+
+
+ io.quarkus
+ quarkus-maven-plugin
+ ${quarkus.version}
+
+
+
+ native-image
+
+
+ true
+
+
+
+
+
+ maven-failsafe-plugin
+ ${surefire-plugin.version}
+
+
+
+ integration-test
+ verify
+
+
+
+ ${project.build.directory}/${project.build.finalName}-runner
+
+
+
+
+
+
+
+
+