Skip to content

Commit

Permalink
upgrade lib, gradle, kotlin, fix response model
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Nazarov committed Jul 28, 2024
1 parent a1561e2 commit 2d06315
Show file tree
Hide file tree
Showing 42 changed files with 386 additions and 271 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
build
/plugin-build/.kotlin/
.kotlin
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 1 addition & 5 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 1 addition & 6 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ subprojects {
}

detekt {
config = rootProject.files("config/detekt/detekt.yml")
config.setFrom(rootProject.files("config/detekt/detekt.yml"))
}
}

Expand All @@ -48,7 +48,7 @@ tasks.withType<DependencyUpdatesTask> {
fun String.isNonStable() = "^[0-9,.v-]+(-r)?$".toRegex().matches(this).not()

tasks.register("clean", Delete::class.java) {
delete(rootProject.buildDir)
delete(rootProject.layout.buildDirectory)
}

tasks.register("reformatAll") {
Expand Down
Loading

0 comments on commit 2d06315

Please sign in to comment.