Skip to content

Commit 6f63630

Browse files
author
shabtaisharon
committed
Merge pull request #163 from rpmoore/master
Added a build task to create a jar with the built SDK and it's depend…
2 parents 9aa625e + edbb18c commit 6f63630

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

ds3-sdk/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ task genConfigProperties << {
5757
}
5858
}
5959

60+
task zip(type: Zip) {
61+
from configurations.runtime.allArtifacts.files
62+
from configurations.runtime
63+
into (project.name + "-" + project.version)
64+
}
65+
66+
zip.dependsOn jar
67+
6068
jar {
6169
from sourceSets.main.allJava
6270
}

0 commit comments

Comments
 (0)