This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#artificer.config.file.refresh = 60000 | |
#artificer.config.baseurl = https://www.artificer.org/artificer-server | |
artificer.config.auditing.enabled = false | |
artificer.config.auditing.enabled-derived = false | |
# If you deploy SNAPSHOT artifacts to Artificer through Maven, updating an existing artifact is disallowed by default. | |
# To allow it, set this property to true. | |
artificer.config.maven.allow-snapshots = false | |
# Due to performance considerations, JMS support is disabled by default. Enable here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Download pom.xml with one bom | |
echo "Downloading pom.xml with ONE bom" | |
curl https://gitlab.cee.redhat.com/-/snippets/4370/raw/master/one-bom-generator.xml --output one-bom-generator.xml | |
BOM1_VERSION=2.2.0.fuse-800019-redhat-00001 | |
BOM1_GROUP_ID=org.apache.camel.quarkus | |
BOM1_ARTIFACT_ID=camel-quarkus-bom |