This is an automated email from the ASF dual-hosted git repository.
phunt pushed a commit to branch branch-3.6
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/branch-3.6 by this push:
new c5b4c23 ZOOKEEPER-3797: Conflict between fatjar and full-build Maven
profiles
c5b4c23 is described below
commit c5b4c235fdd4abc6d4ebda2d40eb76d9452a417e
Author: Enrico Olivelli <[email protected]>
AuthorDate: Sat Apr 18 10:03:14 2020 -0700
ZOOKEEPER-3797: Conflict between fatjar and full-build Maven profiles
Enable fatjar module in full-build profile.
This is a fix only for branch-3.6, on master branch maven structure is
changing, there is no need for this fix
Author: Enrico Olivelli <[email protected]>
Reviewers: [email protected], [email protected]
Closes #1323 from eolivelli/fix/ZOOKEEPER-3797 and squashes the following
commits:
6dc3270fb [Enrico Olivelli] skip checkstyle
1cff2ff85 [Enrico Olivelli] skip spotbugs
19a869959 [Enrico Olivelli] simplify skipTests
e48811917 [Enrico Olivelli] skip tests in zookeeper-it
3d6dc500b [Enrico Olivelli] enable zookeeper-it
940aec8da [Enrico Olivelli] ZOOKEEPER-3797 Conflict between fatjar and
full-build Maven profiles in branch-3.6
Change-Id: Ifbfc6d1ac63a9eeab399a1fcd575b81185b36fc3
---
pom.xml | 1 +
zookeeper-contrib/pom.xml | 6 ++++++
zookeeper-it/pom.xml | 11 +++++++++++
3 files changed, 18 insertions(+)
diff --git a/pom.xml b/pom.xml
index a1ceeb0..b97d385 100755
--- a/pom.xml
+++ b/pom.xml
@@ -258,6 +258,7 @@
<profile>
<id>full-build</id>
<modules>
+ <module>zookeeper-it</module>
<module>zookeeper-contrib</module>
</modules>
</profile>
diff --git a/zookeeper-contrib/pom.xml b/zookeeper-contrib/pom.xml
index 7387921..f4f83a0 100755
--- a/zookeeper-contrib/pom.xml
+++ b/zookeeper-contrib/pom.xml
@@ -48,6 +48,12 @@
<module>zookeeper-contrib-fatjar</module>
</modules>
</profile>
+ <profile>
+ <id>full-build</id>
+ <modules>
+ <module>zookeeper-contrib-fatjar</module>
+ </modules>
+ </profile>
</profiles>
<build>
diff --git a/zookeeper-it/pom.xml b/zookeeper-it/pom.xml
index bc907f7..75f32b8 100755
--- a/zookeeper-it/pom.xml
+++ b/zookeeper-it/pom.xml
@@ -33,6 +33,17 @@
ZooKeeper system tests
</description>
+ <profiles>
+ <profile>
+ <id>full-build</id>
+ <properties>
+ <skipTests>true</skipTests>
+ <spotbugs.skip>true</spotbugs.skip>
+ <checkstyle.skip>true</checkstyle.skip>
+ </properties>
+ </profile>
+ </profiles>
+
<dependencies>
<dependency>
<groupId>org.apache.zookeeper</groupId>