This is an automated email from the ASF dual-hosted git repository. bchapuis pushed a commit to branch skip-deployment in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
commit 11281b52f3ebda8f4e9c458092bd0dcfbea13319 Author: Bertil Chapuis <[email protected]> AuthorDate: Fri Oct 18 08:21:36 2024 +0200 Skip deployment of tighly coupled modules --- baremaps-cli/pom.xml | 1 + baremaps-core/pom.xml | 4 ++++ baremaps-server/pom.xml | 4 ++++ 3 files changed, 9 insertions(+) diff --git a/baremaps-cli/pom.xml b/baremaps-cli/pom.xml index 825f6248f..b0bec25de 100644 --- a/baremaps-cli/pom.xml +++ b/baremaps-cli/pom.xml @@ -30,6 +30,7 @@ limitations under the License. <properties> <license.directory>${project.build.directory}/generated-sources/license</license.directory> <license.filename>LICENSE</license.filename> + <maven.deploy.skip>true</maven.deploy.skip> <thirdparty.directory>${project.build.directory}/generated-sources/license</thirdparty.directory> <thirdparty.filename>THIRD-PARTY</thirdparty.filename> </properties> diff --git a/baremaps-core/pom.xml b/baremaps-core/pom.xml index d546fd49e..2774419f7 100644 --- a/baremaps-core/pom.xml +++ b/baremaps-core/pom.xml @@ -25,6 +25,10 @@ limitations under the License. <artifactId>baremaps-core</artifactId> + <properties> + <maven.deploy.skip>true</maven.deploy.skip> + </properties> + <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> diff --git a/baremaps-server/pom.xml b/baremaps-server/pom.xml index 7eede1927..06facf10e 100644 --- a/baremaps-server/pom.xml +++ b/baremaps-server/pom.xml @@ -25,6 +25,10 @@ limitations under the License. <artifactId>baremaps-server</artifactId> + <properties> + <maven.deploy.skip>true</maven.deploy.skip> + </properties> + <dependencies> <dependency> <groupId>com.aayushatharva.brotli4j</groupId>
