Skip to content

Instantly share code, notes, and snippets.

View vkasala's full-sized avatar

Viliam Kasala vkasala

  • Red Hat
  • Czech Republic
View GitHub Profile
@vkasala
vkasala / artificer.properties
Last active July 20, 2023 03:17
Wildfly CLI Datasource configuration with jdbc driver
#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.
<?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>
@vkasala
vkasala / quarkus-bom.sh
Created October 25, 2021 13:29
Generate effective tree for a parametrized pom, parse the eff tree's dependencyManagement section and output it as GAV
#!/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