Skip to content

Commit

Permalink
Merge pull request #22 from hiroxpepe/develop
Browse files Browse the repository at this point in the history
Refactor pom.xml to rename the groupId and
  • Loading branch information
hiroxpepe authored Jun 25, 2020
2 parents de14f42 + b2cd4bd commit e050da9
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 30 deletions.
6 changes: 3 additions & 3 deletions model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.examproject</groupId>
<artifactId>exmp-blog-model</artifactId>
<groupId>org.examproject.blog</groupId>
<artifactId>exmp-model</artifactId>
<packaging>jar</packaging>
<version>1.0.3</version>
<name>exmp-blog-model</name>
<name>model</name>

<properties>
<exmp-blog.version>${version}</exmp-blog.version>
Expand Down
15 changes: 7 additions & 8 deletions mvc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.examproject</groupId>
<artifactId>exmp-blog-mvc</artifactId>
<groupId>org.examproject.blog</groupId>
<artifactId>exmp-mvc</artifactId>
<packaging>jar</packaging>
<version>1.0.3</version>
<name>exmp-blog-mvc</name>
<name>mvc</name>

<properties>
<exmp-blog.version>${version}</exmp-blog.version>
<spring.version>5.2.6.RELEASE</spring.version>
<dozer.version>5.5.1</dozer.version>
<lombok.version>1.18.12</lombok.version>
Expand All @@ -24,11 +23,11 @@
<!--//////////////////////////////////////////////////////////////////////////-->
<!-- USER LIB -->

<!-- exmp-blog-service -->
<!-- exmp-service -->
<dependency>
<groupId>org.examproject</groupId>
<artifactId>exmp-blog-service</artifactId>
<version>${exmp-blog.version}</version>
<groupId>org.examproject.blog</groupId>
<artifactId>exmp-service</artifactId>
<version>${version}</version>
</dependency>

<!--//////////////////////////////////////////////////////////////////////////-->
Expand Down
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.examproject</groupId>
<artifactId>exmp-blog</artifactId>
<groupId>org.examproject.blog</groupId>
<artifactId>exmp-project</artifactId>
<packaging>pom</packaging>
<version>1.0.3</version>
<name>exmp-blog</name>
<name>project</name>

<properties>
<exmpblog.version>${version}</exmpblog.version>
Expand Down Expand Up @@ -91,4 +91,5 @@
</plugin>
</plugins>
</build>

</project>
15 changes: 7 additions & 8 deletions service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.examproject</groupId>
<artifactId>exmp-blog-service</artifactId>
<groupId>org.examproject.blog</groupId>
<artifactId>exmp-service</artifactId>
<packaging>jar</packaging>
<version>1.0.3</version>
<name>exmp-blog-service</name>
<name>service</name>

<properties>
<exmp-blog.version>${version}</exmp-blog.version>
<spring.version>5.2.6.RELEASE</spring.version>
<lombok.version>1.18.12</lombok.version>
<slf4j.version>1.7.30</slf4j.version>
Expand All @@ -23,11 +22,11 @@
<!--//////////////////////////////////////////////////////////////////////////-->
<!-- USER LIB -->

<!-- exmp-blog-model -->
<!-- exmp-model -->
<dependency>
<groupId>org.examproject</groupId>
<artifactId>exmp-blog-model</artifactId>
<version>${exmp-blog.version}</version>
<groupId>org.examproject.blog</groupId>
<artifactId>exmp-model</artifactId>
<version>${version}</version>
</dependency>

<!--///////////////////////////////////////////////////////////////////////////-->
Expand Down
15 changes: 7 additions & 8 deletions webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.examproject</groupId>
<artifactId>exmp-blog-webapp</artifactId>
<groupId>org.examproject.blog</groupId>
<artifactId>exmp-webapp</artifactId>
<packaging>war</packaging>
<version>1.0.3</version>
<name>exmp-blog-webapp</name>
<name>webapp</name>

<properties>
<exmp-blog.version>${version}</exmp-blog.version>
<jackson.version>2.11.0</jackson.version>
<tiles.version>3.0.8</tiles.version>
<java.version>1.8</java.version>
Expand All @@ -21,11 +20,11 @@
<!--//////////////////////////////////////////////////////////////////////////-->
<!-- USER LIB -->

<!-- exmp-blog-mvc -->
<!-- exmp-mvc -->
<dependency>
<groupId>org.examproject</groupId>
<artifactId>exmp-blog-mvc</artifactId>
<version>${exmp-blog.version}</version>
<groupId>org.examproject.blog</groupId>
<artifactId>exmp-mvc</artifactId>
<version>${version}</version>
</dependency>

<!--//////////////////////////////////////////////////////////////////////////-->
Expand Down

0 comments on commit e050da9

Please sign in to comment.