Skip to content

Commit 5554e23

Browse files
committed
Add gradle task for collecting dependency jars into target/lib
1 parent 0bf440a commit 5554e23

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ if(hasProperty('target') && target == 'android') {
9595
}
9696
}
9797

98+
task getDeps(type: Copy) {
99+
from sourceSets.main.runtimeClasspath
100+
into 'target/lib'
101+
}
102+
98103
ext {
99104
swagger_annotations_version = "1.5.8"
100105
jackson_version = "2.9.5"

0 commit comments

Comments
 (0)