Skip to content

Commit

Permalink
release 0.5.0 (#72)
Browse files Browse the repository at this point in the history
Signed-off-by: Nischal Sharma <[email protected]>
  • Loading branch information
NickSneo authored May 23, 2024
1 parent f8c0974 commit e8e4c27
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 13 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.5.0]() (Upcoming)
# [0.5.1]() (Upcoming)

### Bug Fixes

*

### Features

*

### BREAKING CHANGES

*

# [0.5.0](https://github.com/web3j/solidity-gradle-plugin/releases/tag/v0.5.0) (2024-05-23)

### Bug Fixes

* NIL

### Features

* Different solidity compile config for different sourceSets [#69](https://github.com/hyperledger/web3j-solidity-gradle-plugin/pull/69)
Expand Down
18 changes: 6 additions & 12 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,27 +30,21 @@ apply {

description = 'Solidity Gradle Plugin'

gradlePlugin {
plugins {
solidity {
id = 'org.web3j.solidity'
implementationClass = 'org.web3j.solidity.gradle.plugin.SolidityPlugin'
}
}
}

gradlePlugin {
website = 'https://web3j.io/'
vcsUrl = 'https://github.com/hyperledger/web3j-solidity-gradle-plugin'
description = 'Gradle plugin providing tasks to compile Solidity contracts.'
plugins {
solidity {
// id is captured from java-gradle-plugin configuration
displayName = project.description
id = 'org.web3j.solidity'
implementationClass = 'org.web3j.solidity.gradle.plugin.SolidityPlugin'
displayName = 'Solidity Plugin'
description = 'Gradle plugin providing tasks to compile Solidity contracts.'
tags = ['solidity', 'ethereum']
}
}
}


repositories {
maven {
url "https://plugins.gradle.org/m2/"
Expand Down

0 comments on commit e8e4c27

Please sign in to comment.