Skip to content

Commit

Permalink
Merge pull request #412 from jonesbusy/feature/do-not-upload-cli-to-a…
Browse files Browse the repository at this point in the history
…rtifactory

Don't distribute the CLI artifacts (like the far jar) to Artifactory
  • Loading branch information
jonesbusy authored Dec 7, 2024
2 parents a93a89e + d035715 commit 851680e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions plugin-modernizer-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,15 @@
</resource>
</resources>
<plugins>
<!-- We don't want to deploy the CLI to Jenkins Artifactory (It's huge fat jar of ~100Mib). We only need the parent pom and core for recipes -->
<!-- The CLI is distributed via JRelease and published on the GitHub releases page -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down

0 comments on commit 851680e

Please sign in to comment.