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 2021/11/24 14:20:12 UTC

[camel-performance-tests] 18/33: Use a single point of parent POM for build, properties and BOMs

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

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-performance-tests.git

commit 67790e26cdb08bfc919e607d70d118b1d7feefd7
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Nov 24 15:01:20 2021 +0100

    Use a single point of parent POM for build, properties and BOMs
---
 .../kafka/minio-kafka-exchange-pooling/pom.xml     | 71 ----------------------
 1 file changed, 71 deletions(-)

diff --git a/profiling/kafka/minio-kafka-exchange-pooling/pom.xml b/profiling/kafka/minio-kafka-exchange-pooling/pom.xml
index 7457715..4e7a366 100644
--- a/profiling/kafka/minio-kafka-exchange-pooling/pom.xml
+++ b/profiling/kafka/minio-kafka-exchange-pooling/pom.xml
@@ -34,52 +34,6 @@
     <name>Camel Performance :: Profiling :: Minio Kafka Exchange Pooling</name>
     <description>A Minio to Kafka with exchange pooling containeraized application to show profiling practices</description>
 
-    <properties>
-        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-
-        <exec-maven-plugin.version>3.0.0</exec-maven-plugin.version>
-        <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
-        <maven.compiler.parameters>true</maven.compiler.parameters>
-        <maven.compiler.source>11</maven.compiler.source>
-        <maven.compiler.target>11</maven.compiler.target>
-
-        <quarkus.version>2.2.0.Final</quarkus.version>
-        <quarkus.container-image.build>true</quarkus.container-image.build>
-        <quarkus.container-image.group>quay.io/oscerd</quarkus.container-image.group>
-        <quarkus.container-image.name>${project.artifactId}</quarkus.container-image.name>
-
-        <camel-k-runtime.version>1.9.0</camel-k-runtime.version>
-        <camel-quarkus.version>2.2.0</camel-quarkus.version>
-        <camel-kamelets-catalog.version>0.4.0</camel-kamelets-catalog.version>
-    </properties>
-
-    <dependencyManagement>
-        <dependencies>
-            <dependency>
-                <groupId>io.quarkus</groupId>
-                <artifactId>quarkus-bom</artifactId>
-                <version>${quarkus.version}</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.camel.k</groupId>
-                <artifactId>camel-k-runtime-bom</artifactId>
-                <version>${camel-k-runtime.version}</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.camel.quarkus</groupId>
-                <artifactId>camel-quarkus-bom</artifactId>
-                <version>${camel-quarkus.version}</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
-
     <dependencies>
         <dependency>
             <groupId>io.quarkus</groupId>
@@ -116,31 +70,6 @@
         </dependency>
     </dependencies>
 
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>io.quarkus</groupId>
-                <artifactId>quarkus-maven-plugin</artifactId>
-                <version>${quarkus.version}</version>
-                <extensions>true</extensions>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>build</goal>
-                            <goal>generate-code</goal>
-                            <goal>generate-code-tests</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <version>${maven-compiler-plugin.version}</version>
-            </plugin>
-        </plugins>
-    </build>
-
     <profiles>
         <profile>
             <id>jvm</id>