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:16 UTC

[camel-performance-tests] 22/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 43000c1735e3fce7e2fa8c72275772691059c7b1
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Nov 24 15:02:54 2021 +0100

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

diff --git a/profiling/kafka/nats-kafka-exchange-pooling/pom.xml b/profiling/kafka/nats-kafka-exchange-pooling/pom.xml
index c27d98d..7b785b4 100644
--- a/profiling/kafka/nats-kafka-exchange-pooling/pom.xml
+++ b/profiling/kafka/nats-kafka-exchange-pooling/pom.xml
@@ -34,52 +34,6 @@
     <name>Camel Performance :: Profiling :: Nats Kafka Exchange Pooling</name>
     <description>A Nats 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>