diff --git a/build.gradle b/build.gradle index 19ef79d..b04316c 100644 --- a/build.gradle +++ b/build.gradle @@ -171,6 +171,10 @@ task cryptoCli(type: JavaExec) { classpath = sourceSets.main.runtimeClasspath standardInput = System.in + // SafeDB 라이브러리 경로 추가 (리눅스) + classpath += files("/safedb/JavaAPI/config") + classpath += fileTree(dir: "/safedb/JavaAPI/lib", include: ["*.jar"]) + // CLI 인자 전달: ./gradlew cryptoCli --args="bcrypt hash password123" if (project.hasProperty('args')) { args project.args.split('\\s+')