You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/03/08 09:04:39 UTC

[camel-k-runtime] 02/02: [maven-release-plugin] rollback the release of camel-k-runtime-project-1.15.3

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

acosentino pushed a commit to branch release-1.15.x
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit 7e8c16d77f9f318cb95dd553618902f842c6aefb
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 8 10:04:33 2023 +0100

    [maven-release-plugin] rollback the release of camel-k-runtime-project-1.15.3
---
 distribution/pom.xml | 77 ++++++++++++++++++++++++++++------------------------
 1 file changed, 41 insertions(+), 36 deletions(-)

diff --git a/distribution/pom.xml b/distribution/pom.xml
index 5050698c..d5fc9ff6 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -27,40 +27,45 @@
   <packaging>pom</packaging>
 
   <artifactId>apache-camel-k-runtime</artifactId>
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-assembly-plugin</artifactId>
-        <version>${maven-assembly-plugin-version}</version>
-        <executions>
-          <execution>
-            <id>source-release</id>
-            <phase>package</phase>
-            <goals>
-              <goal>single</goal>
-            </goals>
-            <configuration>
-              <finalName>apache-camel-k-runtime-${project.version}</finalName>
-              <descriptors>
-                <descriptor>src/main/assemblies/source-release.xml</descriptor>
-              </descriptors>
-            </configuration>
-          </execution>
-          <execution>
-            <id>maven-repository</id>
-            <phase>package</phase>
-            <goals>
-              <goal>single</goal>
-            </goals>
-            <configuration>
-              <descriptors>
-                <descriptor>src/main/assemblies/repository.xml</descriptor>
-              </descriptors>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
+  <profiles>
+    <profile>
+      <id>release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <version>${maven-assembly-plugin-version}</version>
+            <executions>
+              <execution>
+                <id>source-release</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+                <configuration>
+                  <finalName>apache-camel-k-runtime-${project.version}</finalName>
+                  <descriptors>
+                    <descriptor>src/main/assemblies/source-release.xml</descriptor>
+                  </descriptors>
+                </configuration>
+              </execution>
+              <execution>
+                <id>maven-repository</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+                <configuration>
+                  <descriptors>
+                    <descriptor>src/main/assemblies/repository.xml</descriptor>
+                  </descriptors>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>