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
@Grapes([ | |
@Grab(group='org.sonatype.plexus', module='plexus-sec-dispatcher', version='1.4'), | |
@Grab(group='org.codehaus.plexus', module='plexus-utils', version='1.5.15'), | |
@Grab(group='org.eclipse.sisu', module='org.eclipse.sisu.plexus', version='0.3.4'), | |
]) | |
import org.sonatype.plexus.components.cipher.DefaultPlexusCipher | |
import org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher | |
def decryptSetting(String encrypted, String encryptedMaster) { | |
return decrypt(encrypted, decryptMaster(encryptedMaster)) |
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
#!/usr/bin/env bash | |
set -eou pipefail | |
# Determine the path to this script... | |
# Short version | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" | |
# Long version (handles symlinks) | |
SOURCE="${BASH_SOURCE[0]}" |
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
" https://github.com/janko-m/vim-test | |
"------------------------------------ | |
let test#strategy = "dispatch" | |
let test#enabled_runners = ["groovy#maventest", "java#maventest"] | |
let g:test#groovy#maventest#defaultoptions = '-DfailIfNoTests=true -Dmaven.test.redirectTestOutputToFile=false' | |
let g:test#groovy#maventest#options = g:test#groovy#maventest#defaultoptions . ' -DargLine="' . $JAVA_OPTS . '"' | |
let g:test#groovy#maventest#executable = 'mw test' | |
function! TestCoverage() | |
unlet! g:test#last_command g:test#last_position g:test#last_strategy |
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
mkvmerge -o FINAL.mkv PART_1.mkv +PART_2.mkv +PART_3.mkv |