PAN-7 Initial setup of the persistence with Spring Data JPA, Hibernate, Tomcat Server, and Spring Boot

This commit is contained in:
2019-02-17 16:52:31 -07:00
parent 015c80215c
commit cc302f17c3
31 changed files with 175 additions and 124 deletions
+4 -4
View File
@@ -41,7 +41,7 @@ allprojects {
apply plugin: 'jacoco'
apply plugin: 'org.unbroken-dome.test-sets'
apply plugin: 'idea'
// apply plugin: 'io.spring.dependency-management'
apply plugin: 'io.spring.dependency-management'
}
subprojects {
@@ -95,9 +95,9 @@ dependencies {
compile 'org.codehaus.groovy:groovy-all:2.3.11'
compile 'org.apache.commons:commons-lang3:3.5'
// The production code uses the SLF4J logging API at compile time
compile 'org.slf4j:slf4j-api:1.7.21'
compile 'org.slf4j:slf4j-api:1.7.22'
compile "joda-time:joda-time:2.2"
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.1.2.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.0.5.RELEASE'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile "org.springframework:spring-test:5.0.9.RELEASE"
@@ -129,6 +129,6 @@ compileTestKotlin {
}
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.2.1'
distributionType = Wrapper.DistributionType.ALL
}