Skip to content

Instantly share code, notes, and snippets.

@dsdstudio
Created December 2, 2012 17:32
Show Gist options
  • Select an option

  • Save dsdstudio/4190045 to your computer and use it in GitHub Desktop.

Select an option

Save dsdstudio/4190045 to your computer and use it in GitHub Desktop.
Gradle non-recursive dependency
configurations {
wenest
}
dependencies {
wenest('com.wenest.core:wenest-core-userdefined-module-register:0.0.1-SNAPSHOT') {
transitive = false
}
}
jar {
from { configurations.wenest.collect { it.isDirectory() ? it : zipTree(it) } }
manifest {
instruction 'Bundle-Vendor', 'Wenest.Inc'
}
}
@dsdstudio

Copy link
Copy Markdown
Author

하위 의존성을 가져오지않게 하기 위한 gradle 설정이다

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment