Skip to content

Instantly share code, notes, and snippets.

@hlship
Created January 23, 2014 18:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hlship/8584007 to your computer and use it in GitHub Desktop.
Save hlship/8584007 to your computer and use it in GitHub Desktop.
description = "Demonstrate Gradle issue"
group = "io.aviso.novate"
version = "1.0.0-SNAPSHOT"
repositories {
maven {
name "annadale"
url "https://mvn.annadaletech.com/nexus/content/groups/public"
}
mavenLocal()
}
apply plugin: "java"
dependencies {
compile "io.aviso:web-utils:1.3-SNAPSHOT", { transitive = false}
}
task libs(type: Sync) {
from configurations.compile
into "$buildDir/libs"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment