Initial commit
This commit is contained in:
25
build.gradle
Normal file
25
build.gradle
Normal file
@@ -0,0 +1,25 @@
|
||||
plugins {
|
||||
id 'org.springframework.boot' version '2.3.3.RELEASE'
|
||||
id 'java'
|
||||
}
|
||||
|
||||
apply plugin: 'io.spring.dependency-management'
|
||||
|
||||
sourceCompatibility = 11
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
sourceSets.main.resources.srcDirs = ["src/main/resources"]
|
||||
|
||||
dependencies {
|
||||
runtimeOnly 'com.h2database:h2'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||||
implementation 'org.springframework.boot:spring-boot-starter'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-freemarker'
|
||||
compile("org.springframework.boot:spring-boot-starter-web")
|
||||
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.12.1'
|
||||
testImplementation('org.springframework.boot:spring-boot-starter-test')
|
||||
}
|
||||
Reference in New Issue
Block a user