Skip to content

Commit

Permalink
Merge pull request #2331 from terrymanu/dev
Browse files Browse the repository at this point in the history
Add skip deploy on test module
  • Loading branch information
wgy8283335 authored Oct 29, 2023
2 parents 7b5a540 + 7873f49 commit e4b7c22
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
<java.version>1.8</java.version>
<maven.version.range>[3.5.0,)</maven.version.range>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.deploy.skip>false</maven.deploy.skip>

<!-- 3rd party library versions -->
<shardingsphere.version>5.4.1</shardingsphere.version>
Expand Down Expand Up @@ -509,6 +510,13 @@
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
<configuration>
<skip>${maven.deploy.skip}</skip>
</configuration>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions test/util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@
<artifactId>elasticjob-test-util</artifactId>
<name>${project.artifactId}</name>

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

<dependencies>
<dependency>
<groupId>org.apache.curator</groupId>
Expand Down

0 comments on commit e4b7c22

Please sign in to comment.