Skip to content

Commit

Permalink
Merge pull request #226 from AdaptiveScale/release-2.3.1
Browse files Browse the repository at this point in the history
Release 2.3.1
  • Loading branch information
nbesimi authored May 21, 2024
2 parents c6ecf14 + c7bd782 commit 75a7fd2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
16 changes: 14 additions & 2 deletions binary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,20 @@ ext{

runtime {
options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']
modules = ['java.base', 'java.naming', 'java.xml', 'java.sql', 'java.rmi', 'java.management', 'java.prefs', 'java.desktop', 'jdk.unsupported']

modules = [
'java.base',
'java.naming',
'java.xml',
'java.sql',
'java.rmi',
'java.management',
'java.prefs',
'java.desktop',
'jdk.unsupported',
'jdk.crypto.ec',
'jdk.crypto.cryptoki',
'java.security.jgss'
]
targetPlatform("linux-x64") {
imageZip = project.ext.imageFile
jdkHome = jdkDownload("https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.9.1%2B1/OpenJDK11U-jdk_x64_linux_hotspot_11.0.9.1_1.tar.gz") {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {

allprojects {
group = 'com.adaptivescale'
version = '2.3.0'
version = '2.3.1'
sourceCompatibility = 11
targetCompatibility = 11
}
Expand Down
2 changes: 1 addition & 1 deletion cli/src/main/java/com/adaptivescale/rosetta/cli/Cli.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
@Slf4j
@CommandLine.Command(name = "cli",
mixinStandardHelpOptions = true,
version = "2.3.0",
version = "2.3.1",
description = "Declarative Database Management - DDL Transpiler"
)
class Cli implements Callable<Void> {
Expand Down

0 comments on commit 75a7fd2

Please sign in to comment.