Skip to content

Instantly share code, notes, and snippets.

View strangercoder's full-sized avatar

Jonathan Strange strangercoder

  • Tyler Technologies Inc.
  • Nashville, TN
View GitHub Profile

Keybase proof

I hereby claim:

  • I am strangercoder on github.
  • I am stranger (https://keybase.io/stranger) on keybase.
  • I have a public key ASDx5KFMQs0P8aUp-em3p2tpUpBv5MbNFXAbAC_IxwVNnAo

To claim this, I am signing this object:

@strangercoder
strangercoder / pom.xml
Created July 17, 2014 16:06
Pom for single, executable jar
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>test</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>test</name>
<url>http://maven.apache.org</url>
<dependencies>
@strangercoder
strangercoder / .gitignore
Last active December 11, 2015 22:08
Git ignore
# Maven #
#####################
target/
# Java #
#####################
*.class
*.jar
*.war
*.ear