Warning: push.default is unset; its implicit value is changing in Git 2.0

Here is what can be found under push.default in the documentation: current – push the current branch to update a branch with the same name on the receiving end. Works in both central and non-central workflows. upstream – push the current branch back to the branch whose changes are usually integrated into the current branch (which

Warning: push.default is unset; its implicit value is changing in Git 2.0 Read More »

Encrypted Database Passwords in JBoss

JBoss provides a simple mechanism to encrypt database passwords with blowfish. So the standalone.xml does not include our database passwords in plaintext anymore. First you have to encrypt your password with org.picketbox.datasource.security.SecureIdentityLoginModule. This class includes a main method so you can run it with a single argument which has to be your plaintext password. The result will look like

Encrypted Database Passwords in JBoss Read More »