Compare commits
No commits in common. "fecef79d769da830815b3733dc8cfe9217ddb554" and "46f904d893b03479e37a0a76f5f70b02e9c7d553" have entirely different histories.
fecef79d76
...
46f904d893
27
build.gradle
27
build.gradle
@ -3,7 +3,7 @@ buildscript {
|
|||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.6.4")
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.5.RELEASE")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -13,23 +13,26 @@ apply plugin: 'idea'
|
|||||||
apply plugin: 'org.springframework.boot'
|
apply plugin: 'org.springframework.boot'
|
||||||
apply plugin: 'io.spring.dependency-management'
|
apply plugin: 'io.spring.dependency-management'
|
||||||
|
|
||||||
|
bootJar {
|
||||||
|
baseName = 'gs-serving-web-content'
|
||||||
|
version = '0.1.0'
|
||||||
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceCompatibility = 17
|
sourceCompatibility = 1.8
|
||||||
targetCompatibility = 17
|
targetCompatibility = 1.8
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web'
|
compile("org.springframework.boot:spring-boot-starter-web")
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf'
|
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-devtools'
|
compile("org.springframework.boot:spring-boot-devtools")
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa'
|
compile("org.springframework.boot:spring-boot-starter-data-jpa")
|
||||||
implementation group: 'com.h2database', name: 'h2'
|
compile("com.h2database:h2")
|
||||||
implementation group: 'javax.xml.bind', name: 'jaxb-api'
|
compile("javax.xml.bind:jaxb-api:2.3.0")
|
||||||
implementation group: 'javax.validation', name: 'validation-api', version: '2.0.1.Final'
|
compile("org.javassist:javassist:3.23.1-GA")
|
||||||
implementation group: 'javassist', name: 'javassist', version: '3.12.1.GA'
|
testCompile("junit:junit")
|
||||||
implementation group: 'junit', name: 'junit'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
|
|||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip
|
||||||
|
Loading…
Reference in New Issue
Block a user