Skip to content

Instantly share code, notes, and snippets.

@TheRealFalcon
Created June 29, 2017 14:59
Show Gist options
  • Save TheRealFalcon/c918dcdac172b43f6f7c56548b7ef0f6 to your computer and use it in GitHub Desktop.
Save TheRealFalcon/c918dcdac172b43f6f7c56548b7ef0f6 to your computer and use it in GitHub Desktop.
Simple gradle example
plugins {
id 'java'
id 'java-library'
id 'application'
id "com.github.johnrengelman.shadow" version "2.0.1"
}
group 'falcon'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
mainClassName = 'Test'
repositories {
mavenCentral()
}
defaultTasks ':shadowJar'
dependencies {
implementation group: 'com.google.guava', name: 'guava', version:'22.0'
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment