Skip to content

Commit 7a81ffd

Browse files
committed
-bump bslls 0.22.0
- bump jdk target 17 - bump sq core 9.9
1 parent 5d60668 commit 7a81ffd

File tree

3 files changed

+8
-13
lines changed

3 files changed

+8
-13
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
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

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: java
22

33
jdk:
4-
- openjdk11
4+
- openjdk17
55

66
addons:
77
sonarcloud: true

build.gradle.kts

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff 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

3232
dependencies {
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

8176
java {
82-
sourceCompatibility = JavaVersion.VERSION_11
83-
targetCompatibility = JavaVersion.VERSION_11
77+
sourceCompatibility = JavaVersion.VERSION_17
78+
targetCompatibility = JavaVersion.VERSION_17
8479
}
8580

8681
tasks.withType<JavaCompile> {

0 commit comments

Comments
 (0)