File tree 3 files changed +4
-4
lines changed
src/main/java/org/web3j/gradle/plugin
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ description = 'Gradle plugin providing tasks to generate Web3j contracts from So
13
13
sourceCompatibility = 17
14
14
15
15
ext {
16
- web3jVersion = version
16
+ web3jVersion = version. replaceAll( / -hotfix$ / , ' ' )
17
17
}
18
18
19
19
apply {
Original file line number Diff line number Diff line change 1
1
group =org.web3j
2
- version =4.11.3
2
+ version =4.11.3-hotfix
3
3
org.gradle.caching =true
4
4
org.gradle.parallel =true
5
- solidityPluginVersion =0.4.0
5
+ solidityPluginVersion =0.4.1
6
6
kotlinVersion =1.8.10
7
7
junitVersion =4.12
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ protected String getProjectVersion() {
70
70
final Properties versionProps = new Properties ();
71
71
try (InputStream inStream = versionPropsFile .openStream ()) {
72
72
versionProps .load (inStream );
73
- return versionProps .getProperty ("version" );
73
+ return versionProps .getProperty ("version" ). replaceAll ( "-hotfix$" , "" ) ;
74
74
}
75
75
} catch (IOException e ) {
76
76
throw new PluginApplicationException (
You can’t perform that action at this time.
0 commit comments