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
import liquibase.CatalogAndSchema; | |
import liquibase.Contexts; | |
import liquibase.Liquibase; | |
import liquibase.database.Database; | |
import liquibase.database.DatabaseFactory; | |
import liquibase.database.jvm.JdbcConnection; | |
import liquibase.diff.output.DiffOutputControl; | |
import liquibase.exception.DatabaseException; | |
import liquibase.exception.LiquibaseException; | |
import liquibase.integration.commandline.CommandLineUtils; |
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
management: | |
endpoints: | |
enabled-by-default: false | |
web: | |
exposure: | |
include: "*" | |
endpoint: | |
info: | |
enabled: true | |
info: |
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
#!/bin/bash | |
set -e | |
shopt -s expand_aliases | |
XARGS_MAX_CMD_LENGTH=`echo | xargs --show-limits 2>&1 | awk '/POSIX upper limit on argument length/ {print $NF}'` | |
echo "Checking paths under '$PWD' for case related problems..." | |
alias sort_case_insensitive='sort -f' | |
alias uniq_show_grouped_duplicates='uniq -i --all-repeated=separate' |