This is an automated email from the ASF dual-hosted git repository.

lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new ec8afd6  Fix pulsar-io main profile activation by default (#11188)
ec8afd6 is described below

commit ec8afd67579617fc6e8560dffb0afc7a181d1e30
Author: Fangbin Sun <[email protected]>
AuthorDate: Tue Jul 6 16:12:16 2021 +0800

    Fix pulsar-io main profile activation by default (#11188)
---
 pulsar-io/pom.xml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/pulsar-io/pom.xml b/pulsar-io/pom.xml
index 5d87310..2e20f79 100644
--- a/pulsar-io/pom.xml
+++ b/pulsar-io/pom.xml
@@ -35,7 +35,11 @@
     <profile>
       <id>main</id>
       <activation>
-        <activeByDefault>true</activeByDefault>
+        <property>
+          <name>disableIoMainProfile</name>
+          <!-- always active unless true is passed as a value -->
+          <value>!true</value>
+        </property>
       </activation>
       <modules>
         <module>core</module>

Reply via email to