File tree 3 files changed +9
-26
lines changed
3 files changed +9
-26
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- uses : actions/checkout@master
16
- - name : Set up JDK 11
17
- uses : actions/setup-java@v1
16
+ - name : Set up JDK 21
17
+ uses : actions/setup-java@v4
18
18
with :
19
- java-version : 11
19
+ java-version : 21
20
20
- name : Build with Gradle
21
21
run : ./gradlew bootRun
22
22
env :
Original file line number Diff line number Diff line change 1
1
plugins {
2
- id ' org.springframework.boot' version ' 2.3.5.RELEASE'
3
- id ' io.spring.dependency-management' version ' 1.0.10.RELEASE'
4
2
id ' java'
3
+ id ' org.springframework.boot' version ' 3.3.1'
4
+ id ' io.spring.dependency-management' version ' 1.1.5'
5
5
}
6
6
7
7
group = ' pl.nullpointersoftware.mudlet'
8
8
version = ' 0.0.1-SNAPSHOT'
9
- sourceCompatibility = ' 11'
10
9
11
- configurations {
12
- compileOnly {
13
- extendsFrom annotationProcessor
14
- }
15
- }
16
10
17
11
repositories {
18
12
mavenCentral()
19
13
}
20
14
21
- ext {
22
- set(' springCloudVersion' , " Hoxton.SR8" )
23
- }
24
-
25
15
dependencies {
26
- implementation ' org.springframework.boot:spring-boot-starter-json:2.5.4'
27
- implementation ' com.dropbox.core:dropbox-core-sdk:4.0.0'
28
- compileOnly ' org.projectlombok:lombok'
29
- annotationProcessor ' org.projectlombok:lombok'
30
- }
31
-
32
- dependencyManagement {
33
- imports {
34
- mavenBom " org.springframework.cloud:spring-cloud-dependencies:${ springCloudVersion} "
35
- }
16
+ implementation ' org.springframework.boot:spring-boot-starter-json:3.3.1'
17
+ compileOnly ' org.projectlombok:lombok:1.18.32'
18
+ annotationProcessor ' org.projectlombok:lombok:1.18.32'
36
19
}
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.6.1 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.8 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments