-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update Gradle, Kotlin, plugin-publish * Add `.editorconfig` to ensure common formatting across the project * Add `settings.gradle` with `rootProject.name` to fix abiltiy to relocate build cache * Enable build cache for better build performance * Configure toolchains, use LTS java version * Fix kotlin deprecation warning * Temporairly disable `pl.droidsonroids.jacoco.testkit` due to incompatibility * Fix Gradle 8.1 compatibility by not subclassing `WriteProperties` task * Bump min_supported gradle version * Update Configuration Cache test Make it run twice, to ensure second run will actually use cached values * Remove file that doesn't exist anymore
- Loading branch information
1 parent
6186899
commit f4e8d4b
Showing
13 changed files
with
265 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
root = true | ||
|
||
[*] | ||
indent_size = 4 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.{kt,kts}] | ||
max_line_length = 140 | ||
ij_kotlin_allow_trailing_comma = true | ||
ij_kotlin_allow_trailing_comma_on_call_site = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,4 @@ POM_PACKAGING=jar | |
POM_EMAIL[email protected] | ||
POM_INCEPTION_YEAR=2017 | ||
POM_DEVELOPER_NAME=Karol Wrótniak | ||
org.gradle.caching=true |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-all.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.