plugins { id 'java' id 'org.springframework.boot' version '3.3.4' id 'io.spring.dependency-management' version '1.1.6' } group = 'com.vmis' version = '0.0.1-SNAPSHOT' java { toolchain { languageVersion = JavaLanguageVersion.of(17) } } repositories { mavenCentral() } dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-validation' // OpenAPI/Swagger UI implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0' // Apache HttpClient5 for RestTemplate request factory implementation 'org.apache.httpcomponents.client5:httpclient5:5.2.3' // GPKI JNI local library implementation files('lib/libgpkiapi_jni_1.5.jar') // Log4j 1.x for legacy util (NewGpkiUtil). Consider replacing with SLF4J in future. implementation 'log4j:log4j:1.2.17' // Configuration metadata annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' // Lombok compileOnly 'org.projectlombok:lombok:1.18.34' annotationProcessor 'org.projectlombok:lombok:1.18.34' testCompileOnly 'org.projectlombok:lombok:1.18.34' testAnnotationProcessor 'org.projectlombok:lombok:1.18.34' testImplementation 'org.springframework.boot:spring-boot-starter-test' } tasks.withType(Test).configureEach { useJUnitPlatform() }