Skip to content

Commit

Permalink
[INLONG-9025][Build] Avoid deploying the distribution packages to rep…
Browse files Browse the repository at this point in the history
…ositories (#9026)
  • Loading branch information
dockerzhang authored Oct 8, 2023
1 parent ff549c7 commit c31e73a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions inlong-distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,14 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${plugin.deploy.version}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
4 changes: 2 additions & 2 deletions inlong-sdk/sort-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<version>${plugin.compile.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -98,7 +98,7 @@
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<version>${plugin.deploy.version}</version>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion inlong-sort/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<version>${plugin.deploy.version}</version>
</plugin>

<plugin>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<plugin.compile.version>3.8.1</plugin.compile.version>
<plugin.deploy.version>3.1.1</plugin.deploy.version>
<plugin.assembly.version>3.2.0</plugin.assembly.version>
<plugin.surefire.version>3.0.0-M7</plugin.surefire.version>
<plugin.failsafe.version>3.0.0-M7</plugin.failsafe.version>
Expand Down

0 comments on commit c31e73a

Please sign in to comment.