diff --git a/build.gradle b/build.gradle index 3212546..829bee4 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ } group = 'com.example.springtest' -version = '0.0.1-SNAPSHOT' +//version = '0.0.1-SNAPSHOT' sourceCompatibility = '1.8' repositories { @@ -17,11 +17,13 @@ implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-jersey' implementation 'org.springframework.boot:spring-boot-starter-web' + implementation 'org.springframework.boot:spring-boot-starter-actuator' runtimeOnly 'com.h2database:h2' providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat' testImplementation('org.springframework.boot:spring-boot-starter-test') { exclude group: 'org.junit.vintage', module: 'junit-vintage-engine' } + compile("com.fasterxml.jackson.core:jackson-databind") } test {