plugins { id 'java' id 'org.springframework.boot' version '3.2.0' id 'io.spring.dependency-management' version '1.1.4' } group 'org.example' version '1.0-SNAPSHOT' sourceCompatibility = '17' repositories { mavenCentral() } configurations { compileOnly { extendsFrom annotationProcessor } } dependencies { compileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' implementation group: 'eu.chargetime.ocpp', name: 'v1_6', version: '1.0.1' implementation 'org.springframework.boot:spring-boot-starter-web' implementation group: 'org.springdoc', name: 'springdoc-openapi-starter-webmvc-ui', version: '2.3.0' testImplementation 'org.springframework.boot:spring-boot-starter-test' } test { useJUnitPlatform() }