Category: Devlog

0

About java compatibility in Gradle

targetCompatibility and sourceCompatibility maps to -target release and -source release in javac. Source is basically the source language level and target is the level of the bytecode that is generate

0

let's customize jar archive file name

gradlew p option can serve the user arguments into the build.gradle. 1./gradlew clean -Pgroup=com.github.kidongYun -Pversion=master-6cae222513-1 -xtest assemble publishToMavenLoca findProperty(String)

0

Linux Commands

Check hostname1> hostname Check running process1> ps -ef | grep <substring of process name>

0

Spring Batch

1. Concepts of Job, Step, TaskletYou should know one basic concept of them. that is one of the relationship between each them. ‘Job’ includes ‘Step’ ‘Step’ includes ‘Tasklet’ so You can remember t

0

Add Flutter sdk path in mac

123> touch ~/.zshrc> vi ~/.zshrc 1export PATH=$PATH:~/Documents/Dropbox/kian.yun/2022/workspace/service/flutter_sdk_mac/flutter/bin 123> source ~/.zshrc> flutter 1> flutter build apk --