kotlin compile style&nb...
2022/02/28
2022/02/20
mac java version
久しぶりにJavaを触った。many many jdks ...so how to mange so many jdksshow jdks version on your mac pc/usr/libexec/java_home -Venv is a good idea. python->pyenvnode->nodenvruby->rbenvgolang->gvmjava->jenvinstall jenv brew install jenv export JENV_ROOT="$HOME/.jenv"echo 'eval "$(jenv init -)"' >> ~/.bash_profilesource ~/.bash_profilejenv doctoradd jdk path to jenvjenv add /Library/Java/JavaVirtualMachines/jdk-12.0.2.jdk/Contents/Homeuse some versionjenv local 11 &nb...
2022/02/16
Gradle The JavaExec.main property has been deprecated
deprecated gradle features were used in this build, making it incompatible with gradle 8.0. => add ↓ to gradle.propertiesorg.gradle.warning.mode=allthen he JavaExec.main property has been deprecatedchange build.gradleplugins { id "application"}apply plugin : "java"application { mainClass = 'xxx.xxx'}then gradle ...
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
slf4j has more implements. but you have none in you class path, that is the reason.add it gradle examplebuild.gradle```dependencies {
implementation 'org.slf4j:slf4j-log4j12:1.7.36'
}...
intelliJ gradle version
use gradle from : can select some gradle&nb...