You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
537 B
23 lines
537 B
plugins {
|
|
id 'java'
|
|
id "io.freefair.lombok" version "5.3.0"
|
|
id 'org.springframework.boot' version '2.7.4'
|
|
id 'io.spring.dependency-management' version '1.0.14.RELEASE'
|
|
}
|
|
|
|
group 'org.example'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation group: 'eu.chargetime.ocpp', name: 'v1_6', version: '1.0.1'
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |