Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release and updated web3j to 4.12.2 #91

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,34 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.12.2]() (Upcoming)
# [4.12.3]() (Upcoming)

### Bug Fixes

*

### Features

*
*

### BREAKING CHANGES

*

# [4.12.2](https://github.com/web3j/web3j-gradle-plugin/releases/tag/v4.12.2) (2024-09-19)

### Bug Fixes

*

### Features

* Upgrade to Web3j 4.12.2 and release web3j gradle plugin 4.12.2 [#90](https://github.com/hyperledger/web3j-gradle-plugin/pull/90)

### BREAKING CHANGES

*

# [4.12.1](https://github.com/web3j/web3j-gradle-plugin/releases/tag/v4.12.1) (2024-08-16)

### Bug Fixes
Expand Down
25 changes: 7 additions & 18 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -101,25 +101,14 @@ tasks.withType(Test) {
reports.html.destination file("${reporting.baseDir}/${name}")
}

tasks.named('spotlessJava') {
dependsOn downloadJavaLicense, downloadFormatterProperties
mustRunAfter tasks.named('compileJava')
mustRunAfter tasks.named('spotlessGroovyGradle')
dependsOn tasks.named('javadoc')
dependsOn tasks.named('pluginDescriptors')
dependsOn tasks.named('processResources')
}

tasks.named('spotlessKotlin') {
dependsOn downloadJavaLicense, downloadFormatterProperties
mustRunAfter tasks.named('compileJava')
mustRunAfter tasks.named('spotlessGroovyGradle')
dependsOn tasks.named('spotlessJava')
dependsOn tasks.named('compileTestJava')
dependsOn tasks.named('javadoc')
dependsOn tasks.named('test')
}

tasks.named('spotlessCheck') {
dependsOn downloadJavaLicense, downloadFormatterProperties
dependsOn tasks.named('spotlessJava')
dependsOn tasks.named('spotlessKotlin')
dependsOn tasks.named('spotlessGroovyGradle')
tasks.named('spotlessJava') {
dependsOn tasks.named('compileTestJava')
dependsOn tasks.named('javadoc')
dependsOn tasks.named('test')
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=org.web3j
version=4.12.1
version=4.12.2
org.gradle.caching=true
org.gradle.parallel=true
solidityPluginVersion=0.5.1
Expand Down
Loading