This file contains hidden or 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" 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> |
This file contains hidden or 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
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 |
This file contains hidden or 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"?> | |
<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=""/> |
This file contains hidden or 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
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 |
This file contains hidden or 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
# | |
# 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 |
This file contains hidden or 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
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 |
This file contains hidden or 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
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 |
This file contains hidden or 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
################################################################################ | |
# | |
# 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 |
This file contains hidden or 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
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 |
This file contains hidden or 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
// | |
// 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 |