Skip to content

Commit 6be81d7

Browse files
committed
add task to copy jar to root project
1 parent ca571c9 commit 6be81d7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

dts-generator/build.gradle

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,11 @@ jar {
1212
manifest {
1313
attributes 'Main-Class': 'com.telerik.Main'
1414
}
15-
}
15+
}
16+
17+
task copyJarToBuildTools (type: Copy) {
18+
from "$projectDir/build/libs/dts-generator.jar"
19+
into "$rootDir/build-tools"
20+
}
21+
22+
jar.finalizedBy(copyJarToBuildTools)

0 commit comments

Comments
 (0)