Skip to content

Commit

Permalink
Fix implicit gradle task dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hierynomus committed Jul 4, 2023
1 parent c81367c commit c655c71
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
id "jacoco"
id "maven-publish"
id "signing"
id 'pl.allegro.tech.build.axion-release' version '1.14.4'
id 'pl.allegro.tech.build.axion-release' version '1.15.3'
id "com.github.hierynomus.license" version "0.16.1"
id "com.bmuschko.docker-remote-api" version "9.2.1"
// id 'ru.vyarus.java-lib' version '2.1.0'
Expand Down Expand Up @@ -243,5 +243,7 @@ task forkedUploadRelease(type: GradleBuild) {
project.tasks.release.dependsOn([project.tasks.integrationTest, project.tasks.build])
project.tasks.release.finalizedBy(project.tasks.forkedUploadRelease)

project.tasks.verifyRelease.dependsOn([project.tasks.buildItestImage, project.tasks.createItestContainer, project.tasks.compileIntegrationTestGroovy, project.tasks.compileTestGroovy, project.tasks.compileIntegrationTestJava])

project.tasks.jacocoTestReport.dependsOn(project.tasks.test)
project.tasks.check.dependsOn(project.tasks.jacocoTestReport)

0 comments on commit c655c71

Please sign in to comment.