Skip to content

Commit e87a8f7

Browse files
committed
1. new year
2. обновление зависимостей
1 parent a3dffce commit e87a8f7

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

.github/workflows/check.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: ['17', '20']
11+
java_version: ['17', '21']
1212
os: [ubuntu-latest, windows-latest, macOS-latest]
1313
steps:
1414
- uses: actions/checkout@v4

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,4 @@ build/
4747
.gradle/
4848
/.idea/misc.xml
4949

50+
/.idea/material_theme_project_new.xml

build.gradle.kts

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,24 +39,23 @@ val isSnapshot = gitVersioning.gitVersionDetails.refType != GitRefType.TAG
3939
repositories {
4040
mavenLocal()
4141
mavenCentral()
42-
maven(url = "https://jitpack.io")
4342
}
4443

4544
dependencies {
4645
// логирование
47-
implementation("org.slf4j", "slf4j-api", "2.0.11")
46+
implementation("org.slf4j", "slf4j-api", "2.1.0-alpha1")
4847

4948
// прочее
50-
implementation("commons-io", "commons-io", "2.15.1")
51-
api("io.github.1c-syntax", "bsl-common-library", "0.5.0")
49+
implementation("commons-io", "commons-io", "2.18.0")
50+
api("io.github.1c-syntax", "bsl-common-library", "0.7.1")
5251

5352
// тестирование
54-
testImplementation("org.junit.jupiter", "junit-jupiter-api", "5.10.1")
55-
testImplementation("org.junit.jupiter", "junit-jupiter-engine", "5.10.1")
56-
testImplementation("org.assertj", "assertj-core", "3.25.0")
53+
testImplementation("org.junit.jupiter", "junit-jupiter-api", "5.11.4")
54+
testImplementation("org.junit.jupiter", "junit-jupiter-engine", "5.11.4")
55+
testImplementation("org.assertj", "assertj-core", "3.27.0")
56+
5757
// логирование
58-
// https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12
59-
testImplementation("org.slf4j", "slf4j-log4j12", "2.0.11")
58+
testImplementation("org.slf4j", "slf4j-reload4j", "2.1.0-alpha1")
6059
}
6160

6261
java {

src/main/java/com/github/_1c_syntax/bsl/supconf/GeneralSupportVariant.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of Support Configuration.
33
*
4-
* Copyright (c) 2019 - 2024
4+
* Copyright (c) 2019 - 2025
55
* Tymko Oleg <olegtymko@yandex.ru>, Maximov Valery <maximovvalery@gmail.com> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

src/main/java/com/github/_1c_syntax/bsl/supconf/ParseSupportData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of Support Configuration.
33
*
4-
* Copyright (c) 2019 - 2024
4+
* Copyright (c) 2019 - 2025
55
* Tymko Oleg <olegtymko@yandex.ru>, Maximov Valery <maximovvalery@gmail.com> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

src/main/java/com/github/_1c_syntax/bsl/supconf/SupportConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of Support Configuration.
33
*
4-
* Copyright (c) 2019 - 2024
4+
* Copyright (c) 2019 - 2025
55
* Tymko Oleg <olegtymko@yandex.ru>, Maximov Valery <maximovvalery@gmail.com> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

src/main/java/com/github/_1c_syntax/bsl/supconf/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of Support Configuration.
33
*
4-
* Copyright (c) 2019 - 2024
4+
* Copyright (c) 2019 - 2025
55
* Tymko Oleg <olegtymko@yandex.ru>, Maximov Valery <maximovvalery@gmail.com> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

src/test/java/com/github/_1c_syntax/bsl/supconf/ParseSupportDataTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of Support Configuration.
33
*
4-
* Copyright (c) 2019 - 2024
4+
* Copyright (c) 2019 - 2025
55
* Tymko Oleg <olegtymko@yandex.ru>, Maximov Valery <maximovvalery@gmail.com> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

src/test/java/com/github/_1c_syntax/bsl/supconf/SupportConfigurationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of Support Configuration.
33
*
4-
* Copyright (c) 2019 - 2024
4+
* Copyright (c) 2019 - 2025
55
* Tymko Oleg <olegtymko@yandex.ru>, Maximov Valery <maximovvalery@gmail.com> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

0 commit comments

Comments
 (0)