Skip to content

Commit

Permalink
Merge pull request #3098 from Nivanchenko/fix/exclude-commons-logging
Browse files Browse the repository at this point in the history
Исключил commons-logging.
  • Loading branch information
nixel2007 authored Jul 16, 2023
2 parents ac8f88b + 6479122 commit 03727db
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ dependencies {
api("org.eclipse.lsp4j", "org.eclipse.lsp4j.websocket.jakarta", "0.21.0")

// 1c-syntax
api("com.github.1c-syntax", "bsl-parser", "0.22.0") {
api("com.github.1c-syntax", "bsl-parser", "bba7c0b091aca562ec082829a49f525a9bb5d7ef") {
exclude("com.tunnelvisionlabs", "antlr4-annotations")
exclude("com.ibm.icu", "*")
exclude("org.antlr", "ST4")
Expand All @@ -88,7 +88,9 @@ dependencies {
api("io.github.1c-syntax", "supportconf", "0.1.1")

// JLanguageTool
implementation("org.languagetool", "languagetool-core", languageToolVersion)
implementation("org.languagetool", "languagetool-core", languageToolVersion){
exclude("commons-logging", "commons-logging")
}
implementation("org.languagetool", "language-en", languageToolVersion)
implementation("org.languagetool", "language-ru", languageToolVersion)

Expand All @@ -98,7 +100,9 @@ dependencies {
// commons utils
implementation("commons-io", "commons-io", "2.13.0")
implementation("org.apache.commons", "commons-lang3", "3.12.0")
implementation("commons-beanutils", "commons-beanutils", "1.9.4")
implementation("commons-beanutils", "commons-beanutils", "1.9.4"){
exclude("commons-logging", "commons-logging")
}
implementation("org.apache.commons", "commons-collections4", "4.4")
implementation("org.apache.commons", "commons-exec", "1.3")

Expand Down

1 comment on commit 03727db

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'BSL LS perfomance measurement (SSL 3.1)'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.10.

Benchmark suite Current: 03727db Previous: ac8f88b Ratio
.github/scripts/benchmark.py::test_analyze_ssl31 56.6361563205719 sec (stddev: 0.8368832512944231) 34.67204554875692 sec (stddev: 21.41618067649605) 1.63

This comment was automatically generated by workflow using github-action-benchmark.

CC: @otymko

Please sign in to comment.