File tree Expand file tree Collapse file tree 3 files changed +8
-13
lines changed
Expand file tree Collapse file tree 3 files changed +8
-13
lines changed Original file line number Diff line number Diff line change 88 strategy :
99 fail-fast : false
1010 matrix :
11- java_version : ['11 ', '17 ']
11+ java_version : ['17 ', '19 ']
1212 os : [ubuntu-latest, windows-latest, macOS-latest]
1313 steps :
1414 - uses : actions/checkout@v3
Original file line number Diff line number Diff line change 11language : java
22
33jdk :
4- - openjdk11
4+ - openjdk17
55
66addons :
77 sonarcloud : true
Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ repositories {
2727 }
2828}
2929
30- val sonarQubeVersion = " 8 .9.0.43852 "
30+ val sonarQubeVersion = " 9 .9.0.65466 "
3131
3232dependencies {
33- implementation(" org.sonarsource.sonarqube " , " sonar-plugin-api" , sonarQubeVersion )
33+ implementation(" org.sonarsource.api.plugin " , " sonar-plugin-api" , " 9.14.0.375 " )
3434
3535 // в jitpack лежат в группе com.github.1c-syntax, в централе - io.github.1c-syntax
36- implementation(" io.github.1c-syntax" , " bsl-language-server" , " 0.21 .0" ) {
36+ implementation(" io.github.1c-syntax" , " bsl-language-server" , " 0.22 .0" ) {
3737 exclude(" com.github.1c-syntax" , " utils" )
3838 }
3939 implementation(" com.github.1c-syntax" , " utils" , " 0.5.1" )
@@ -66,21 +66,16 @@ dependencies {
6666
6767 // CONSTRAINTS
6868
69- implementation(" org.slf4j:slf4j-api" ) {
70- version {
71- strictly(" 1.7.30" )
72- }
73- }
7469 implementation(" com.google.guava:guava" ) {
7570 version {
76- strictly(" 30 .1-jre" )
71+ strictly(" 32.0 .1-jre" )
7772 }
7873 }
7974}
8075
8176java {
82- sourceCompatibility = JavaVersion .VERSION_11
83- targetCompatibility = JavaVersion .VERSION_11
77+ sourceCompatibility = JavaVersion .VERSION_17
78+ targetCompatibility = JavaVersion .VERSION_17
8479}
8580
8681tasks.withType<JavaCompile > {
You can’t perform that action at this time.
0 commit comments