cubefs/client/java/build.sh
leonrayang 3396accd80 feat(projectstructure): reorganize the module directory in the root to a suitable subdirectory
close:#22458839

Signed-off-by: leonrayang <chl696@sina.com>
2024-12-26 09:24:22 +08:00

10 lines
259 B
Bash
Executable File

#!/bin/bash
#script function:1.cd libsdk and compile libcfs.so
# 2.put libcfs.so under the src/main/resource directory
# 3.package jar
cd ../libsdk
./build.sh
cp libcfs.so ../java/src/main/resources/
cd ../java
mvn clean package