This is an automated email from the ASF dual-hosted git repository. pcongiusti pushed a commit to branch release-1.15.x in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git
The following commit(s) were added to refs/heads/release-1.15.x by this push: new 91bf1946 fix(ci): publish distro within the rest of modules 91bf1946 is described below commit 91bf194628aeb3a46fa9f3130b3790e5a9ffe063 Author: Pasquale Congiusti <pasquale.congiu...@gmail.com> AuthorDate: Mon Oct 24 13:29:10 2022 +0200 fix(ci): publish distro within the rest of modules --- distribution/pom.xml | 77 ++++++++++++++++++++++++---------------------------- 1 file changed, 36 insertions(+), 41 deletions(-) diff --git a/distribution/pom.xml b/distribution/pom.xml index d5fc9ff6..5050698c 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -27,45 +27,40 @@ <packaging>pom</packaging> <artifactId>apache-camel-k-runtime</artifactId> - <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> + <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> </project>