Skip to content

Commit

Permalink
Disable deploy of example module
Browse files Browse the repository at this point in the history
Disable deploy of example module by adding the skip true property to the
 maven-deploy-plugin
  • Loading branch information
smcvb committed Sep 15, 2022
1 parent 7fedb34 commit f8a71e0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 9 additions & 1 deletion amqp-axon-example/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2010-2021. Axon Framework
~ Copyright (c) 2010-2022. Axon Framework
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -158,6 +158,14 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@
<javax.jaxb-api.version>2.3.1</javax.jaxb-api.version>

<jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version>

<maven-deploy-plugin.version>3.0.0</maven-deploy-plugin.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -213,7 +215,7 @@
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0</version>
<version>${maven-deploy-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down

0 comments on commit f8a71e0

Please sign in to comment.