Skip to content

Commit

Permalink
Merge pull request #2066 from Krishanx92/newmain
Browse files Browse the repository at this point in the history
Fix circuler dependency issue
  • Loading branch information
Krishanx92 authored Mar 4, 2024
2 parents 7a158dc + 405b8c6 commit 7b0977c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions adapter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

plugins {
id 'net.researchgate.release' version '2.8.0'
id 'com.jfrog.GradleDepTree' version '3.0.3'
}

apply from: "$rootDir/../common-gradle-scripts/docker.gradle"
Expand Down Expand Up @@ -79,13 +80,12 @@ task build{
dependsOn docker_build
}

task clean(type: Delete) {
task buildClean(type: Delete) {
delete rootProject.buildDir
}

tasks.named('clean').configure {
dependsOn clean
dependsOn buildClean
}


afterReleaseBuild.dependsOn "docker_push"

0 comments on commit 7b0977c

Please sign in to comment.