updated lys version
This commit is contained in:
@@ -16,11 +16,8 @@ dependencies {
|
|||||||
implementation project(':')
|
implementation project(':')
|
||||||
}
|
}
|
||||||
|
|
||||||
application {
|
nativeImage {
|
||||||
mainClass = 'net.woggioni.jwo.benchmark.Main'
|
mainClass = 'net.woggioni.jwo.benchmark.Main'
|
||||||
}
|
|
||||||
|
|
||||||
tasks.named(NativeImagePlugin.NATIVE_IMAGE_TASK_NAME, NativeImageTask) {
|
|
||||||
useMusl = true
|
useMusl = true
|
||||||
buildStaticImage = true
|
buildStaticImage = true
|
||||||
}
|
}
|
@@ -3,6 +3,6 @@ org.gradle.parallel=true
|
|||||||
org.gradle.caching=true
|
org.gradle.caching=true
|
||||||
|
|
||||||
gitea.maven.url = https://gitea.woggioni.net/api/packages/woggioni/maven
|
gitea.maven.url = https://gitea.woggioni.net/api/packages/woggioni/maven
|
||||||
jwo.version = 2025.01.26
|
jwo.version = 2025.02.25
|
||||||
lys.version = 2025.01.24
|
lys.version = 2025.02.25
|
||||||
guice.version = 5.0.1
|
guice.version = 5.0.1
|
||||||
|
@@ -16,15 +16,13 @@ dependencies {
|
|||||||
implementation project(':jmath')
|
implementation project(':jmath')
|
||||||
}
|
}
|
||||||
|
|
||||||
application {
|
nativeImage {
|
||||||
mainClass = 'net.woggioni.jmath.benchmark.Main'
|
mainClass = 'net.woggioni.jmath.benchmark.Main'
|
||||||
|
useMusl = true
|
||||||
|
buildStaticImage = true
|
||||||
}
|
}
|
||||||
|
|
||||||
configureNativeImage {
|
configureNativeImage {
|
||||||
args('20')
|
args('20')
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.named(NativeImagePlugin.NATIVE_IMAGE_TASK_NAME, NativeImageTask) {
|
|
||||||
useMusl = true
|
|
||||||
buildStaticImage = true
|
|
||||||
}
|
|
@@ -73,7 +73,7 @@ public class Application {
|
|||||||
public Path computeCacheDirectory() {
|
public Path computeCacheDirectory() {
|
||||||
Stream<Path> commonCandidates = optional2Stream(
|
Stream<Path> commonCandidates = optional2Stream(
|
||||||
Optional.ofNullable(cacheDirectoryPropertyKey).map(System::getProperty).map(Paths::get),
|
Optional.ofNullable(cacheDirectoryPropertyKey).map(System::getProperty).map(Paths::get),
|
||||||
Optional.ofNullable(cacheDirectoryEnvVar).map(System::getProperty).map(Paths::get)
|
Optional.ofNullable(cacheDirectoryEnvVar).map(System::getenv).map(Paths::get)
|
||||||
);
|
);
|
||||||
Stream<Path> osSpecificCandidates;
|
Stream<Path> osSpecificCandidates;
|
||||||
if (OS.isMac) {
|
if (OS.isMac) {
|
||||||
@@ -108,7 +108,7 @@ public class Application {
|
|||||||
public Path computeDataDirectory() {
|
public Path computeDataDirectory() {
|
||||||
Stream<Path> commonCandidates = optional2Stream(
|
Stream<Path> commonCandidates = optional2Stream(
|
||||||
Optional.ofNullable(dataDirectoryPropertyKey).map(System::getProperty).map(Paths::get),
|
Optional.ofNullable(dataDirectoryPropertyKey).map(System::getProperty).map(Paths::get),
|
||||||
Optional.ofNullable(dataDirectoryEnvVar).map(System::getProperty).map(Paths::get)
|
Optional.ofNullable(dataDirectoryEnvVar).map(System::getenv).map(Paths::get)
|
||||||
);
|
);
|
||||||
Stream<Path> osSpecificCandidates;
|
Stream<Path> osSpecificCandidates;
|
||||||
if (OS.isMac) {
|
if (OS.isMac) {
|
||||||
@@ -143,7 +143,7 @@ public class Application {
|
|||||||
public Path computeConfigurationDirectory() {
|
public Path computeConfigurationDirectory() {
|
||||||
Stream<Path> commonCandidates = optional2Stream(
|
Stream<Path> commonCandidates = optional2Stream(
|
||||||
Optional.ofNullable(configurationDirectoryPropertyKey).map(System::getProperty).map(Paths::get),
|
Optional.ofNullable(configurationDirectoryPropertyKey).map(System::getProperty).map(Paths::get),
|
||||||
Optional.ofNullable(configurationDirectoryEnvVar).map(System::getProperty).map(Paths::get)
|
Optional.ofNullable(configurationDirectoryEnvVar).map(System::getenv).map(Paths::get)
|
||||||
);
|
);
|
||||||
Stream<Path> osSpecificCandidates;
|
Stream<Path> osSpecificCandidates;
|
||||||
if (OS.isMac) {
|
if (OS.isMac) {
|
||||||
|
Reference in New Issue
Block a user