From ca1fe72030e64d24d996c2640bb5ef762fcd668f Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sat, 10 Apr 2021 00:30:25 +0800 Subject: [PATCH] feat: use buildj :::javac and :::java --- __ffi/robusta_jni/justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__ffi/robusta_jni/justfile b/__ffi/robusta_jni/justfile index e1e1215..08b5d48 100644 --- a/__ffi/robusta_jni/justfile +++ b/__ffi/robusta_jni/justfile @@ -5,4 +5,4 @@ build: cargo build java_run: build - javac com/example/robusta/HelloWorld.java && RUST_BACKTRACE=full java -Djava.library.path=../target/debug com.example.robusta.HelloWorld + buildj :::javac15 com/example/robusta/HelloWorld.java && RUST_BACKTRACE=full buildj :::java15 -Djava.library.path=./target/debug com.example.robusta.HelloWorld