Skip to content

Commit

Permalink
Merge pull request #112 from hyperledger/fix-build-runner
Browse files Browse the repository at this point in the history
Fix build
  • Loading branch information
gtebrean authored Aug 14, 2024
2 parents d8eed41 + 123af65 commit 2b980a1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### Bug Fixes

*
* Fix gradle build run [#112](https://github.com/hyperledger/web3j-evm/pull/112)

### Features

Expand Down
14 changes: 10 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
buildscript {
repositories {
jcenter()
}
}

plugins {
id 'java'
id 'maven-publish'
id 'idea'
id 'jacoco'
id 'com.jfrog.bintray' version '1.8.4'
id 'com.jfrog.bintray' version '1.8.5'
id 'com.diffplug.spotless' version '6.25.0'
id 'io.codearte.nexus-staging' version '0.30.0'
id 'de.marcphilipp.nexus-publish' version '0.4.0'
Expand Down Expand Up @@ -97,9 +103,9 @@ configurations.all {
}
}

tasks.named("spotlessKotlin").configure { dependsOn("compileKotlin","spotlessJava", "spotlessGroovyGradle","processTestResources") }
tasks.named("spotlessJava").configure { dependsOn("compileTestJava","compileTestKotlin","compileKotlin","compileTestKotlin","spotlessGroovyGradle","processTestResources") }
tasks.named("test").configure { dependsOn("spotlessKotlin","spotlessJava") }
tasks.named("spotlessKotlin").configure { dependsOn("compileKotlin", "spotlessJava", "spotlessGroovyGradle", "processTestResources") }
tasks.named("spotlessJava").configure { dependsOn("compileTestJava", "compileTestKotlin", "compileKotlin", "compileTestKotlin", "spotlessGroovyGradle", "processTestResources") }
tasks.named("test").configure { dependsOn("spotlessKotlin", "spotlessJava") }


// To publish in mavenLocal()
Expand Down

0 comments on commit 2b980a1

Please sign in to comment.