Skip to content

Commit

Permalink
skip deployment to Maven for common and example modules
Browse files Browse the repository at this point in the history
  • Loading branch information
agrgr committed Dec 23, 2024
1 parent b831182 commit b252bb8
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
20 changes: 20 additions & 0 deletions spring-boot-autoconfigure-aerospike-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,24 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.3</version>
<executions>
<execution>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<deploy>false</deploy>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
20 changes: 20 additions & 0 deletions spring-boot-starter-example-aerospike/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,24 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.3</version>
<executions>
<execution>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<deploy>false</deploy>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit b252bb8

Please sign in to comment.