Skip to content

Instantly share code, notes, and snippets.

@dsdstudio
Created December 2, 2012 17:32
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 dsdstudio/4190045 to your computer and use it in GitHub Desktop.
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
Author

non recursively dependency => scope (gid:aid:version) { transitive = false }

@dsdstudio
Copy link
Author

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

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