Skip to content

Commit

Permalink
Update some maven modules to not be deployed with release
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Jan 22, 2025
1 parent baa2d3c commit 1c55392
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 27 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
<module>stork-deploy</module>
<module>stork-maven-plugin</module>
<!--<module>stork-gradle-plugin</module>-->
<module>stork-cli</module>
<module>stork-demo/stork-demo-hellod</module>
<module>stork-demo/stork-demo-dropwizard</module>
<module>stork-cli</module>
</modules>

<build>
Expand Down
12 changes: 5 additions & 7 deletions stork-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,13 @@
<artifactId>stork</artifactId>
<version>3.1.4-SNAPSHOT</version>
</parent>


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

<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<!-- eating our own dog food :-) -->
<plugin>
<groupId>com.fizzed</groupId>
Expand Down
7 changes: 1 addition & 6 deletions stork-demo/stork-demo-dropwizard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,11 @@
<main.java.package>com.fizzed.stork.demo.dropwizard</main.java.package>
<dropwizard.version>0.7.1</dropwizard.version>
<jackson.version>2.3.3</jackson.version>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>

<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<!-- eating our own dog food :-) -->
<plugin>
<groupId>com.fizzed</groupId>
Expand Down
7 changes: 1 addition & 6 deletions stork-demo/stork-demo-hellod/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,11 @@

<properties>
<main.java.package>com.fizzed.stork.demo.hellod</main.java.package>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>

<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<!-- eating our own dog food :-) -->
<plugin>
<groupId>com.fizzed</groupId>
Expand Down
12 changes: 5 additions & 7 deletions stork-test-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,13 @@
<artifactId>stork</artifactId>
<version>3.1.4-SNAPSHOT</version>
</parent>


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

<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<!-- build a usable target/stork/lib dir with this app and dependencies -->
<!-- careful not to use any dependencies from this app or maven will barf -->
<plugin>
Expand Down

0 comments on commit 1c55392

Please sign in to comment.