Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd">
<changeSet author="sb" id="oldalbum-1.0.0-albumentries">
<preConditions onFail="CONTINUE" >
<not>
<tableExists tableName="albumentries" />
</not>
</preConditions>
Welcome to the XWin X Server
Vendor: The Cygwin/X Project
Release: 1.20.5.0
OS: CYGWIN_NT-10.0-18363 ITEM-S63383 3.1.5-340.x86_64 2020-06-01 08:59 UTC x86_64
OS: Windows 10 [Windows NT 10.0 build 18363] (Win64)
Package: version 1.20.5-3 built 2019-09-06
XWin was started with the following command line:
XWin :0 -multiwindow -clipboard -wgl
<?xml version="1.0" encoding="UTF-8"?>
<XLaunch WindowMode="MultiWindow" ClientMode="StartProgram" LocalClient="True" Display="0" RemoteProtocol="" LocalProgram="lxterminal" RemoteProgram="xterm" RemoteHost="" RemoteUser="" XDMCPHost="" XDMCPBroadcast="False" XDMCPIndirect="False" Clipboard="True" ExtraParams="" Wgl="True" DisableAC="False" XDMCPTerminate="False" SSHKeyChain="False" SSHTerminal="True" ExtraSSH=""/>
@steinarb
steinarb / org.ops4j.datasource-sonar-collector.cfg
Created May 1, 2020 09:47
Config replacing JDBC driver (defaults to PostgreSQL) and JDBC connection info with contents of environment variables
osgi.jdbc.driver.name=${env:JDBC_DRIVER_NAME:-PostgreSQL JDBC Driver}
dataSourceName=jdbc/sonar-collector
url=${env:JDBC_URL:-jdbc:postgresql:///sonar-collector}
user=${env:JDBC_USER}
password=${env:JDBC_PASSWORD}
org.apache.karaf.features.configKey = org.ops4j.datasource-sonar-collector
@steinarb
steinarb / org.apache.karaf.features.cfg
Created May 1, 2020 09:45
Adds feature repo and loads JDBC driver and sonar-collector feature from the boot feature set
#
# Comma separated list of features repositories to register by default
#
featuresRepositories = \
mvn:org.apache.karaf.features/framework/4.2.8/xml/features, \
mvn:org.apache.karaf.features/spring/4.2.8/xml/features, \
mvn:org.apache.karaf.features/enterprise/4.2.8/xml/features, \
mvn:org.apache.karaf.features/standard/4.2.8/xml/features, \
mvn:no.priv.bang.sonar.sonar-collector/sonar-collector-webhook/LATEST/xml/features
@steinarb
steinarb / Dockerfile
Created May 1, 2020 09:43
Dockerfile to build sonar-collector image
FROM apache/karaf:4.2.8
COPY org.apache.karaf.features.cfg /opt/apache-karaf/etc
COPY org.ops4j.datasource-sonar-collector.cfg /opt/apache-karaf/etc
@steinarb
steinarb / Dockerfile
Created April 13, 2020 17:36
Dockerfile with maven.bang.priv.no repo added and ukelonn feature repo and ukelonn-with-derby feature added
FROM apache/karaf:4.2.8
COPY org.ops4j.pax.url.mvn.cfg /opt/apache-karaf/etc
COPY org.apache.karaf.features.cfg /opt/apache-karaf/etc
@steinarb
steinarb / org.apache.karaf.features.cfg
Created April 13, 2020 17:31
org.apache.karaf.features.cfg with added ukelonn feature repo and feature ukelonn-with-derby added to boot featureset
################################################################################
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
@steinarb
steinarb / Dockerfile
Created April 12, 2020 13:22
Dockerfile adding ukelonn demo application on top of docker hub karaf image
FROM apache/karaf:4.2.8
COPY org.ops4j.pax.url.mvn.cfg /opt/apache-karaf/etc
COPY shell.init.script /opt/apache-karaf/etc
@steinarb
steinarb / shell.init.script
Created April 12, 2020 13:21
shell.init adding ukelonn feature repository and installing ukelonn demo feature
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0