@@ -3,25 +3,23 @@ buildscript {
3
3
mavenCentral()
4
4
}
5
5
dependencies {
6
- classpath(" org.springframework.boot:spring-boot-gradle-plugin:1.5.22.RELEASE " )
6
+ classpath(" org.springframework.boot:spring-boot-gradle-plugin:3.2.4 " )
7
7
classpath(' se.transmode.gradle:gradle-docker:1.2' )
8
8
}
9
9
}
10
10
11
11
apply plugin : ' java'
12
12
apply plugin : ' eclipse'
13
13
apply plugin : ' idea'
14
- apply plugin : ' org.springframework.boot'
15
14
apply plugin : ' docker'
16
15
apply plugin : ' war'
17
- apply plugin : ' maven'
18
16
19
17
group = ' conorheffron'
20
- version = ' 2.4 .0'
18
+ version = ' 3.1 .0'
21
19
description = " Sample Data Manager"
22
20
23
- sourceCompatibility = 1.8
24
- targetCompatibility = 1.8
21
+ sourceCompatibility = 17
22
+ targetCompatibility = 17
25
23
tasks. withType(JavaCompile ) {
26
24
options. encoding = ' UTF-8'
27
25
}
@@ -32,24 +30,22 @@ repositories {
32
30
33
31
dependencies {
34
32
implementation group : ' org.springframework.boot' , name : ' spring-boot-maven-plugin' , version : ' 3.2.4'
35
- compile group : ' com.rabbitmq' , name : ' amqp-client' , version :' 5.21.0'
36
- compile group : ' io.searchbox' , name : ' jest' , version :' 6.3.1'
37
- compile group : ' org.elasticsearch' , name : ' elasticsearch' , version :' 8.13.2'
38
- compile group : ' org.springframework.boot' , name : ' spring-boot-starter-web' , version :' 1.5.22.RELEASE'
39
- compile group : ' org.springframework.boot' , name : ' spring-boot-starter-data-jpa' , version :' 1.5.22.RELEASE'
40
- compile group : ' mysql' , name : ' mysql-connector-java' , version :' 8.0.33'
41
- compile group : ' com.sparkpost' , name : ' sparkpost-lib' , version :' 0.27'
42
- compile group : ' com.h2database' , name : ' h2' , version :' 2.2.224'
43
- compile group : ' org.apache.maven.reporting' , name : ' maven-reporting-api' , version :' 3.1.1'
44
- compile group : ' org.jacoco' , name : ' jacoco-maven-plugin' , version :' 0.8.12'
45
-
46
- compile group : ' org.springframework.boot' , name : ' spring-boot-starter-tomcat' , version :' 3.2.4'
47
- compile group : ' org.apache.tomcat.embed' , name : ' tomcat-embed-jasper' , version :' 10.1.20'
48
- // compile group: 'javax.servlet', name: 'jstl', version:'1.2'
49
- compile group : ' javax.servlet' , name : ' servlet-api' , version : ' 2.5'
33
+ implementation group : ' com.rabbitmq' , name : ' amqp-client' , version : ' 5.18.0'
34
+ implementation group : ' io.searchbox' , name : ' jest' , version :' 6.3.1'
35
+ implementation group : ' org.elasticsearch' , name : ' elasticsearch' , version :' 8.13.2'
36
+ implementation group : ' org.springframework.boot' , name : ' spring-boot-starter-web' , version :' 1.5.22.RELEASE'
37
+ implementation group : ' org.springframework.boot' , name : ' spring-boot-starter-data-jpa' , version :' 1.5.22.RELEASE'
38
+ implementation group : ' mysql' , name : ' mysql-connector-java' , version :' 8.0.33'
39
+ implementation group : ' com.sparkpost' , name : ' sparkpost-lib' , version :' 0.27'
40
+ implementation group : ' com.h2database' , name : ' h2' , version :' 2.2.224'
41
+ implementation group : ' org.apache.maven.reporting' , name : ' maven-reporting-api' , version :' 3.1.1'
42
+ implementation group : ' org.jacoco' , name : ' jacoco-maven-plugin' , version :' 0.8.12'
43
+ implementation group : ' org.springframework.boot' , name : ' spring-boot-starter-tomcat' , version :' 3.2.4'
44
+ implementation group : ' org.apache.tomcat.embed' , name : ' tomcat-embed-jasper' , version :' 10.1.20'
45
+ implementation group : ' javax.servlet' , name : ' servlet-api' , version : ' 2.5'
50
46
51
47
testImplementation group : ' junit' , name : ' junit' , version : ' 4.13.2'
52
- testCompile (group : ' org.springframework.boot' , name : ' spring-boot-starter-test' , version :' 3.2.4' ) {
48
+ testImplementation (group : ' org.springframework.boot' , name : ' spring-boot-starter-test' , version :' 3.2.4' ) {
53
49
exclude(module : ' commons-logging' )
54
50
}
55
51
}
0 commit comments