File tree 3 files changed +17
-13
lines changed
3 files changed +17
-13
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,15 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
17
17
steps :
18
- - uses : actions/checkout@v2
19
- - name : Set up JDK 15
20
- uses : actions/setup-java@v1
21
- with :
22
- java-version : 15
23
- - name : Build with Maven
24
- run : mvn -B package --file pom.xml
18
+ - name : Checkout Project
19
+ uses : actions/checkout@v2
20
+
21
+ - name : Set up JDK
22
+ uses : actions/setup-java@v2
23
+ with :
24
+ java-version : 19
25
+ cache : ' maven'
26
+ distribution : ' temurin'
27
+
28
+ - name : Build with Maven
29
+ run : mvn -B compile -DskipTests --file pom.xml
Original file line number Diff line number Diff line change 1
1
<component name =" ProjectRunConfigurationManager" >
2
2
<configuration default =" false" name =" RemoteClientApplication" type =" SpringBootApplicationConfigurationType" factoryName =" Spring Boot" >
3
- <module name =" cockroachdb-remote-client" />
4
- <option name =" SPRING_BOOT_MAIN_CLASS" value =" io.crdb.docker.RemoteClientApplication" />
5
- <option name =" ENABLE_LAUNCH_OPTIMIZATION" value =" false" />
6
3
<option name =" ENABLE_JMX_AGENT" value =" false" />
7
- <option name =" ALTERNATIVE_JRE_PATH " />
4
+ <option name =" ENABLE_LAUNCH_OPTIMIZATION " value = " false " />
8
5
<envs >
9
6
<env name =" COCKROACH_HOST" value =" localhost:25267" />
10
7
</envs >
8
+ <module name =" remote-client" />
9
+ <option name =" SPRING_BOOT_MAIN_CLASS" value =" io.crdb.docker.RemoteClientApplication" />
11
10
<method v =" 2" >
12
11
<option name =" Make" enabled =" true" />
13
12
</method >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >org.springframework.boot</groupId >
8
8
<artifactId >spring-boot-starter-parent</artifactId >
9
- <version >2.7.6 </version >
9
+ <version >3.0.0 </version >
10
10
<relativePath />
11
11
</parent >
12
12
19
19
20
20
<properties >
21
21
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
22
- <java .version>15 </java .version>
22
+ <java .version>19 </java .version>
23
23
</properties >
24
24
25
25
<dependencies >
You can’t perform that action at this time.
0 commit comments