Setting correct pom version in the modules

This commit is contained in:
Sasa M
2020-06-09 19:06:42 +02:00
parent 6b5bc4e324
commit 934b3ecec5
5 changed files with 22 additions and 22 deletions
@@ -1,16 +1,18 @@
<?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"
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>
<parent>
<groupId>com.baeldung.orderservice</groupId>
<artifactId>order-service</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>order-client</artifactId>
<groupId>com.baeldung.orderservice</groupId>
<artifactId>order-client</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>order-client</name>
<description>Order service client module</description>
<url>http://projects.spring.io/spring-boot/</url>
<parent>
<groupId>com.baeldung.orderservice</groupId>
<artifactId>order-service</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
</project>
@@ -1,21 +1,21 @@
<?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"
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>
<groupId>com.baeldung.orderservice</groupId>
<artifactId>order-server</artifactId>
<version>1.0.0-SNAPSHOT</version>
<parent>
<artifactId>order-service</artifactId>
<groupId>com.baeldung.orderservice</groupId>
<version>1.0-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung.orderservice</groupId>
<artifactId>order-server</artifactId>
<dependencies>
<dependency>
<groupId>com.baeldung.orderservice</groupId>
<artifactId>order-client</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>
@@ -5,8 +5,9 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung.orderservice</groupId>
<artifactId>order-service</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>order-service</name>
<packaging>pom</packaging>
<packaging>jar</packaging>
<parent>
<groupId>com.baeldung</groupId>