[BAEL-18428] - Check modules that don't use our standard parents

This commit is contained in:
amit2103
2019-10-27 01:07:52 +05:30
parent 0c5c2d4e7f
commit d6b68dec07
5 changed files with 259 additions and 240 deletions

View File

@@ -5,6 +5,12 @@
<version>0.1</version> <version>0.1</version>
<name>micronaut</name> <name>micronaut</name>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>

View File

@@ -8,7 +8,7 @@ import org.junit.Test;
import static junit.framework.TestCase.assertEquals; import static junit.framework.TestCase.assertEquals;
public class ConcreteGreetingClientTest public class ConcreteGreetingClientUnitTest
{ {
private EmbeddedServer server; private EmbeddedServer server;
private ConcreteGreetingClient client; private ConcreteGreetingClient client;

View File

@@ -8,7 +8,7 @@ import org.junit.Test;
import static junit.framework.TestCase.assertEquals; import static junit.framework.TestCase.assertEquals;
public class GreetingClientTest { public class GreetingClientUnitTest {
private EmbeddedServer server; private EmbeddedServer server;
private GreetingClient client; private GreetingClient client;

View File

@@ -9,6 +9,13 @@
<name>jnosql</name> <name>jnosql</name>
<packaging>pom</packaging> <packaging>pom</packaging>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<modules> <modules>
<module>jnosql-diana</module> <module>jnosql-diana</module>
<module>jnosql-artemis</module> <module>jnosql-artemis</module>

View File

@@ -7,6 +7,12 @@
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<name>quarkus</name> <name>quarkus</name>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<properties> <properties>
<surefire-plugin.version>2.22.0</surefire-plugin.version> <surefire-plugin.version>2.22.0</surefire-plugin.version>
<quarkus.version>0.15.0</quarkus.version> <quarkus.version>0.15.0</quarkus.version>