This is an automated email from the ASF dual-hosted git repository.
bchapuis pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
The following commit(s) were added to refs/heads/main by this push:
new 476ebad2c Skip deployment of tighly coupled modules (#896)
476ebad2c is described below
commit 476ebad2c8e1716f1b3800b265062b66d8fea9da
Author: Bertil Chapuis <[email protected]>
AuthorDate: Fri Oct 18 08:41:00 2024 +0200
Skip deployment of tighly coupled modules (#896)
---
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>