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
{ | |
"schemaVersion": 1, | |
"label": "LinkedIn", | |
"message": "Connect", | |
"color": "#0077B5", | |
"namedLogo": "linkedin", | |
"logoColor": "white" | |
} |
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
license: mit |
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 | |
# Automating https://blog.dekstroza.io/ulimit-shenanigans-on-osx-el-capitan/ | |
echo "Updating the ulimits on OSX to be able to run RHAMT tests." | |
sudo bash -c 'cat >/Library/LaunchDaemons/limit.maxfiles.plist <<EOF | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> |
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
{ | |
"kind": "Template", | |
"apiVersion": "v1", | |
"metadata": { | |
"annotations": { | |
"description": "Brownie, the brownfield application", | |
"iconClass": "icon-jboss", | |
"tags": "eap,postgresql,javaee,java,database,jboss,xpaas", | |
"version": "1.0.0", | |
"openshift.io/display-name": "Brownie, the brownfield application" |
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
#!/bin/bash | |
DIR_CURRENT=$(pwd) | |
DIR_GIT_CODE=apps-code | |
DIR_APPS=apps-built | |
APP_LIST=( https://github.com/MPDL/INGe https://github.com/sidlors/aeweb ) | |
mvnt() | |
{ |
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
#!/bin/bash | |
# Current directory | |
DIR_CURRENT=$(pwd) | |
# Directory with the source code | |
DIR_GIT_CODE='code' | |
# Maven build parameters | |
MVN_ARGS='-T 4 -U clean eclipse:clean eclipse:eclipse install' |