forked from rsksmart/rskj
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request rsksmart#2640 from rsksmart/vovchyk/java21-support
chore: add java21 support
- Loading branch information
Showing
10 changed files
with
336 additions
and
366 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
plugins { | ||
id "org.sonarqube" version "2.7.1" | ||
id "org.sonarqube" version "5.1.0.4882" | ||
} | ||
|
||
subprojects { | ||
def config = new ConfigSlurper().parse(file("$projectDir/src/main/resources/version.properties").toURI().toURL()) | ||
group = 'co.rsk' | ||
version = config.modifier?.trim() ? config.versionNumber + "-" + config.modifier : config.versionNumber | ||
} | ||
|
Oops, something went wrong.