File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,11 @@ artifacts {
24
24
api shadowJar
25
25
}
26
26
27
- task embeddedAssemblyJar (type : Copy , dependsOn : shadowJar) {
27
+ task cleanBuildDir (type : Delete ) {
28
+ delete getBuildDir()
29
+ }
30
+
31
+ task embeddedAssemblyJar (type : Copy , dependsOn : [shadowJar, cleanBuildDir]) {
28
32
from file(" $buildDir /libs" )
29
33
into file(" $buildDir /embedded" )
30
34
rename { _ -> ' assembly-extensions.jar.embedded' }
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ buildscript {
14
14
15
15
dependencies {
16
16
classpath " com.bmuschko:gradle-docker-plugin:6.4.0"
17
- classpath ' com.github.jengelman.gradle.plugins:shadow:5.2 .0'
17
+ classpath ' com.github.jengelman.gradle.plugins:shadow:6.0 .0'
18
18
classpath ' net.researchgate:gradle-release:2.6.0'
19
19
classpath ' kr.motd.gradle:sphinx-gradle-plugin:2.9.0'
20
20
classpath ' ru.vyarus:gradle-use-python-plugin:2.2.0'
You can’t perform that action at this time.
0 commit comments