Update dependencies
This commit is contained in:
parent
5143ad223f
commit
b02a093c4b
5 changed files with 19 additions and 18 deletions
|
@ -11,3 +11,5 @@ indent_size=2
|
||||||
[*.{kt,kts}]
|
[*.{kt,kts}]
|
||||||
disabled_rules=import-ordering,no-wildcard-imports
|
disabled_rules=import-ordering,no-wildcard-imports
|
||||||
max_line_length=177
|
max_line_length=177
|
||||||
|
ij_kotlin_allow_trailing_comma_on_call_site=true
|
||||||
|
ij_kotlin_allow_trailing_comma=true
|
||||||
|
|
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -32,7 +32,7 @@ jobs:
|
||||||
./gradlew jacocoTestReport --stacktrace
|
./gradlew jacocoTestReport --stacktrace
|
||||||
- uses: codecov/codecov-action@v1
|
- uses: codecov/codecov-action@v1
|
||||||
|
|
||||||
link:
|
lint:
|
||||||
name: Lint check
|
name: Lint check
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -74,3 +74,4 @@ classes
|
||||||
.idea/libraries-with-intellij-classes.xml
|
.idea/libraries-with-intellij-classes.xml
|
||||||
.idea/kotlinc.xml
|
.idea/kotlinc.xml
|
||||||
.idea/jpa-buddy.xml
|
.idea/jpa-buddy.xml
|
||||||
|
.idea/kotlinScripting.xml
|
||||||
|
|
30
build.gradle
30
build.gradle
|
@ -1,9 +1,9 @@
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.jvm' version '1.8.0' apply false
|
id 'org.jetbrains.kotlin.jvm' version '1.8.10' apply false
|
||||||
id "org.jlleitschuh.gradle.ktlint" version "11.1.0"
|
id "org.jlleitschuh.gradle.ktlint" version "11.2.0"
|
||||||
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
|
id "io.github.gradle-nexus.publish-plugin" version "1.2.0"
|
||||||
id "org.jetbrains.kotlin.plugin.serialization" version "1.8.0"
|
id "org.jetbrains.kotlin.plugin.serialization" version "1.8.10"
|
||||||
id "com.google.devtools.ksp" version "1.8.0-1.0.8" apply false
|
id "com.google.devtools.ksp" version "1.8.10-1.0.9" apply false
|
||||||
}
|
}
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
|
@ -116,20 +116,18 @@ subprojects {
|
||||||
disabledRules = [
|
disabledRules = [
|
||||||
"no-wildcard-imports",
|
"no-wildcard-imports",
|
||||||
"import-ordering",
|
"import-ordering",
|
||||||
"max-line-length"
|
"max-line-length",
|
||||||
|
"multiline-if-else"
|
||||||
]
|
]
|
||||||
}
|
filter {
|
||||||
|
exclude { element -> element.file.path.contains("generated/") }
|
||||||
sourceCompatibility = 11
|
|
||||||
|
|
||||||
compileKotlin {
|
|
||||||
kotlinOptions {
|
|
||||||
jvmTarget = "11"
|
|
||||||
javaParameters = true
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
compileTestKotlin {
|
|
||||||
kotlinOptions.jvmTarget = "11"
|
kotlin {
|
||||||
|
jvmToolchain {
|
||||||
|
languageVersion.set(JavaLanguageVersion.of("11"))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,5 +1,5 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|
Loading…
Reference in a new issue