Skip to content

Commit a8ca812

Browse files
Merge pull request #24 from nickstolwijk/skip-deployment-of-jars
Skip deployment of jars
2 parents 0063272 + af7daa6 commit a8ca812

File tree

7 files changed

+45
-41
lines changed

7 files changed

+45
-41
lines changed

product-composite-service/pom.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<parent>
8-
<groupId>com.siriusxi.ms.store</groupId>
9-
<artifactId>store-chassis</artifactId>
10-
<version>0.0.1-SNAPSHOT</version>
11-
</parent>
12-
13-
<artifactId>product-composite-service</artifactId>
14-
<version>0.0.1-SNAPSHOT</version>
15-
<name>Product Composite Service</name>
16-
<description>Product Composite Service Spring Boot based project</description>
17-
<packaging>jar</packaging>
8+
<groupId>com.siriusxi.ms.store</groupId>
9+
<artifactId>store-chassis</artifactId>
10+
<version>0.0.1-SNAPSHOT</version>
11+
<relativePath>../store-chassis</relativePath>
12+
</parent>
13+
14+
<artifactId>product-composite-service</artifactId>
15+
<name>Product Composite Service</name>
16+
<description>Product Composite Service Spring Boot based project</description>
17+
<packaging>jar</packaging>
1818
</project>

product-service/pom.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<parent>
8-
<groupId>com.siriusxi.ms.store</groupId>
9-
<artifactId>store-chassis</artifactId>
10-
<version>0.0.1-SNAPSHOT</version>
11-
</parent>
12-
13-
<artifactId>product-service</artifactId>
14-
<version>0.0.1-SNAPSHOT</version>
15-
<name>Product Service</name>
16-
<description>Product Service Spring Boot based project</description>
17-
<packaging>jar</packaging>
8+
<groupId>com.siriusxi.ms.store</groupId>
9+
<artifactId>store-chassis</artifactId>
10+
<version>0.0.1-SNAPSHOT</version>
11+
<relativePath>../store-chassis</relativePath>
12+
</parent>
13+
14+
<artifactId>product-service</artifactId>
15+
<name>Product Service</name>
16+
<description>Product Service Spring Boot based project</description>
17+
<packaging>jar</packaging>
1818
</project>

recommendation-service/pom.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<parent>
8-
<groupId>com.siriusxi.ms.store</groupId>
9-
<artifactId>store-chassis</artifactId>
10-
<version>0.0.1-SNAPSHOT</version>
11-
</parent>
12-
13-
<artifactId>recommendation-service</artifactId>
14-
<version>0.0.1-SNAPSHOT</version>
15-
<name>Recommendation Service</name>
16-
<description>Recommendation Service Spring Boot based project</description>
17-
<packaging>jar</packaging>
8+
<groupId>com.siriusxi.ms.store</groupId>
9+
<artifactId>store-chassis</artifactId>
10+
<version>0.0.1-SNAPSHOT</version>
11+
<relativePath>../store-chassis</relativePath>
12+
</parent>
13+
14+
<artifactId>recommendation-service</artifactId>
15+
<name>Recommendation Service</name>
16+
<description>Recommendation Service Spring Boot based project</description>
17+
<packaging>jar</packaging>
1818
</project>

review-service/pom.xml

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<parent>
8-
<groupId>com.siriusxi.ms.store</groupId>
9-
<artifactId>store-chassis</artifactId>
10-
<version>0.0.1-SNAPSHOT</version>
11-
</parent>
8+
<groupId>com.siriusxi.ms.store</groupId>
9+
<artifactId>store-chassis</artifactId>
10+
<version>0.0.1-SNAPSHOT</version>
11+
<relativePath>../store-chassis</relativePath>
12+
</parent>
1213

13-
<artifactId>review-service</artifactId>
14-
<version>0.0.1-SNAPSHOT</version>
15-
<name>Review Service</name>
16-
<description>Review Service Spring Boot based project</description>
17-
<packaging>jar</packaging>
14+
<artifactId>review-service</artifactId>
15+
<name>Review Service</name>
16+
<description>Review Service Spring Boot based project</description>
17+
<packaging>jar</packaging>
1818
</project>

store-api/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
2121
<maven.surefire.plugin.version>3.0.0-M4</maven.surefire.plugin.version>
2222
<maven.failsafe.plugin.version>3.0.0-M4</maven.failsafe.plugin.version>
23-
23+
<maven.deploy.skip>true</maven.deploy.skip>
2424
</properties>
2525

2626
<dependencies>

store-chassis/pom.xml

+4-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<!-- Dependencies versions properties -->
3737
<maven.plugin.dockerfile.version>1.4.13</maven.plugin.dockerfile.version>
3838
<maven.plugin.properties.version>1.0.0</maven.plugin.properties.version>
39-
39+
<maven.deploy.skip>true</maven.deploy.skip>
4040
</properties>
4141

4242
<dependencies>
@@ -201,6 +201,9 @@
201201
<exists>${basedir}/Dockerfile</exists>
202202
</file>
203203
</activation>
204+
<properties>
205+
<maven.install.skip>true</maven.install.skip>
206+
</properties>
204207
<build>
205208
<plugins>
206209
<plugin>

store-utils/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
2121
<maven.surefire.plugin.version>3.0.0-M4</maven.surefire.plugin.version>
2222
<maven.failsafe.plugin.version>3.0.0-M4</maven.failsafe.plugin.version>
23+
<maven.deploy.skip>true</maven.deploy.skip>
2324
</properties>
2425

2526
<dependencies>

0 commit comments

Comments
 (0)