Skip to content

Commit

Permalink
Merge pull request #24 from nickstolwijk/skip-deployment-of-jars
Browse files Browse the repository at this point in the history
Skip deployment of jars
  • Loading branch information
mohamed-taman committed Apr 7, 2020
2 parents 0063272 + af7daa6 commit a8ca812
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 41 deletions.
20 changes: 10 additions & 10 deletions product-composite-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.siriusxi.ms.store</groupId>
<artifactId>store-chassis</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>

<artifactId>product-composite-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Product Composite Service</name>
<description>Product Composite Service Spring Boot based project</description>
<packaging>jar</packaging>
<groupId>com.siriusxi.ms.store</groupId>
<artifactId>store-chassis</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../store-chassis</relativePath>
</parent>
<artifactId>product-composite-service</artifactId>
<name>Product Composite Service</name>
<description>Product Composite Service Spring Boot based project</description>
<packaging>jar</packaging>
</project>
20 changes: 10 additions & 10 deletions product-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.siriusxi.ms.store</groupId>
<artifactId>store-chassis</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>

<artifactId>product-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Product Service</name>
<description>Product Service Spring Boot based project</description>
<packaging>jar</packaging>
<groupId>com.siriusxi.ms.store</groupId>
<artifactId>store-chassis</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../store-chassis</relativePath>
</parent>
<artifactId>product-service</artifactId>
<name>Product Service</name>
<description>Product Service Spring Boot based project</description>
<packaging>jar</packaging>
</project>
20 changes: 10 additions & 10 deletions recommendation-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.siriusxi.ms.store</groupId>
<artifactId>store-chassis</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>

<artifactId>recommendation-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Recommendation Service</name>
<description>Recommendation Service Spring Boot based project</description>
<packaging>jar</packaging>
<groupId>com.siriusxi.ms.store</groupId>
<artifactId>store-chassis</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../store-chassis</relativePath>
</parent>
<artifactId>recommendation-service</artifactId>
<name>Recommendation Service</name>
<description>Recommendation Service Spring Boot based project</description>
<packaging>jar</packaging>
</project>
18 changes: 9 additions & 9 deletions review-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.siriusxi.ms.store</groupId>
<artifactId>store-chassis</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<groupId>com.siriusxi.ms.store</groupId>
<artifactId>store-chassis</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../store-chassis</relativePath>
</parent>

<artifactId>review-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Review Service</name>
<description>Review Service Spring Boot based project</description>
<packaging>jar</packaging>
<artifactId>review-service</artifactId>
<name>Review Service</name>
<description>Review Service Spring Boot based project</description>
<packaging>jar</packaging>
</project>
2 changes: 1 addition & 1 deletion store-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
<maven.surefire.plugin.version>3.0.0-M4</maven.surefire.plugin.version>
<maven.failsafe.plugin.version>3.0.0-M4</maven.failsafe.plugin.version>

<maven.deploy.skip>true</maven.deploy.skip>
</properties>

<dependencies>
Expand Down
5 changes: 4 additions & 1 deletion store-chassis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<!-- Dependencies versions properties -->
<maven.plugin.dockerfile.version>1.4.13</maven.plugin.dockerfile.version>
<maven.plugin.properties.version>1.0.0</maven.plugin.properties.version>

<maven.deploy.skip>true</maven.deploy.skip>
</properties>

<dependencies>
Expand Down Expand Up @@ -201,6 +201,9 @@
<exists>${basedir}/Dockerfile</exists>
</file>
</activation>
<properties>
<maven.install.skip>true</maven.install.skip>
</properties>
<build>
<plugins>
<plugin>
Expand Down
1 change: 1 addition & 0 deletions store-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
<maven.surefire.plugin.version>3.0.0-M4</maven.surefire.plugin.version>
<maven.failsafe.plugin.version>3.0.0-M4</maven.failsafe.plugin.version>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>

<dependencies>
Expand Down

0 comments on commit a8ca812

Please sign in to comment.