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}]
|
||||
disabled_rules=import-ordering,no-wildcard-imports
|
||||
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
|
||||
- uses: codecov/codecov-action@v1
|
||||
|
||||
link:
|
||||
lint:
|
||||
name: Lint check
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 10
|
||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -74,3 +74,4 @@ classes
|
|||
.idea/libraries-with-intellij-classes.xml
|
||||
.idea/kotlinc.xml
|
||||
.idea/jpa-buddy.xml
|
||||
.idea/kotlinScripting.xml
|
||||
|
|
30
build.gradle
30
build.gradle
|
@ -1,9 +1,9 @@
|
|||
plugins {
|
||||
id 'org.jetbrains.kotlin.jvm' version '1.8.0' apply false
|
||||
id "org.jlleitschuh.gradle.ktlint" version "11.1.0"
|
||||
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
|
||||
id "org.jetbrains.kotlin.plugin.serialization" version "1.8.0"
|
||||
id "com.google.devtools.ksp" version "1.8.0-1.0.8" apply false
|
||||
id 'org.jetbrains.kotlin.jvm' version '1.8.10' apply false
|
||||
id "org.jlleitschuh.gradle.ktlint" version "11.2.0"
|
||||
id "io.github.gradle-nexus.publish-plugin" version "1.2.0"
|
||||
id "org.jetbrains.kotlin.plugin.serialization" version "1.8.10"
|
||||
id "com.google.devtools.ksp" version "1.8.10-1.0.9" apply false
|
||||
}
|
||||
|
||||
ext {
|
||||
|
@ -116,20 +116,18 @@ subprojects {
|
|||
disabledRules = [
|
||||
"no-wildcard-imports",
|
||||
"import-ordering",
|
||||
"max-line-length"
|
||||
"max-line-length",
|
||||
"multiline-if-else"
|
||||
]
|
||||
}
|
||||
|
||||
sourceCompatibility = 11
|
||||
|
||||
compileKotlin {
|
||||
kotlinOptions {
|
||||
jvmTarget = "11"
|
||||
javaParameters = true
|
||||
filter {
|
||||
exclude { element -> element.file.path.contains("generated/") }
|
||||
}
|
||||
}
|
||||
compileTestKotlin {
|
||||
kotlinOptions.jvmTarget = "11"
|
||||
|
||||
kotlin {
|
||||
jvmToolchain {
|
||||
languageVersion.set(JavaLanguageVersion.of("11"))
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,5 +1,5 @@
|
|||
distributionBase=GRADLE_USER_HOME
|
||||
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
|
||||
zipStorePath=wrapper/dists
|
||||
|
|
Loading…
Reference in a new issue