Skip to content

Instantly share code, notes, and snippets.

@vkasala
Created February 25, 2021 13:25
Show Gist options
  • Save vkasala/bbb0f09849e5fec345022c8c54333799 to your computer and use it in GitHub Desktop.
Save vkasala/bbb0f09849e5fec345022c8c54333799 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>camel-quarkus-bom</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<CAMEL_QUARKUS_VERSION>1.5.0.fuse-jdk11-800008-redhat-00001</CAMEL_QUARKUS_VERSION>
<CAMEL_K_RUNTIME_VERSION>1.6.0.fuse-800003-redhat-00001</CAMEL_K_RUNTIME_VERSION>
<QUARKUS_VERSION>1.7.6.Final-redhat-00014</QUARKUS_VERSION>
</properties>
<dependencyManagement>
<dependencies>
<!-- Official Supported Camel Quarkus BOM -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-bom</artifactId>
<version>${CAMEL_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>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>${QUARKUS_VERSION}</version>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>os-nexus</id>
<url>http://nexus.fuse-qe.eng.rdu2.redhat.com/repository/fuse-all/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>eap-7.1</id>
<url>http://download.eng.brq.redhat.com/brewroot/repos/jb-eap-7.1-rhel-7-maven-build/latest/maven</url>
</repository>
<repository>
<id>jboss-soa-qa-maven-repository</id>
<url>http://dl.bintray.com/jboss-soa-qa/maven/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>os-nexus</id>
<url>http://nexus.fuse-qe.eng.rdu2.redhat.com/repository/fuse-all/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</pluginRepository>
<pluginRepository>
<id>eap-7.1</id>
<url>http://download.eng.brq.redhat.com/brewroot/repos/jb-eap-7.1-rhel-7-maven-build/latest/maven</url>
</pluginRepository>
<pluginRepository>
<id>jboss-soa-qa-maven-repository</id>
<url>http://dl.bintray.com/jboss-soa-qa/maven/</url>
</pluginRepository>
</pluginRepositories>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment