Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/changelog-print.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,5 @@ jobs:
java-version: 11
distribution: 'temurin'
- name: gradle caching
uses: gradle/gradle-build-action@v3
with:
gradle-home-cache-cleanup: true
uses: gradle/actions/setup-gradle@v4
- run: ./gradlew changelogPrint
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ jobs:
distribution: "temurin"
java-version: ${{ matrix.jre }}
- name: gradle caching
uses: gradle/gradle-build-action@v3
with:
gradle-home-cache-cleanup: true
uses: gradle/actions/setup-gradle@v4
- name: git fetch origin main
run: git fetch origin main
- name: gradlew build
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@ jobs:
java-version: 11
distribution: 'temurin'
- name: gradle caching
uses: gradle/gradle-build-action@v3
with:
gradle-home-cache-cleanup: true
uses: gradle/actions/setup-gradle@v4
- run: git fetch origin main
- name: publish all
if: "${{ github.event.inputs.to_publish == 'all' }}"
Expand Down
23 changes: 0 additions & 23 deletions .github/workflows/gradle-wrapper-validation.yml

This file was deleted.

14 changes: 7 additions & 7 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,29 @@ plugins {
// https://github.com/diffplug/blowdryer/blob/main/CHANGELOG.md
id 'com.diffplug.blowdryerSetup' version '1.7.1'
// https://github.com/diffplug/spotless/blob/main/plugin-gradle/CHANGES.md
id 'com.diffplug.spotless' version '7.0.0.BETA2' apply false
id 'com.diffplug.spotless' version '7.0.0.BETA4' apply false
// https://github.com/diffplug/spotless-changelog/blob/main/CHANGELOG.md
id 'com.diffplug.spotless-changelog' version '3.1.2' apply false
// https://plugins.gradle.org/plugin/com.gradle.plugin-publish
id 'com.gradle.plugin-publish' version '1.2.2' apply false
id 'com.gradle.plugin-publish' version '1.3.0' apply false
// https://github.com/equodev/equo-ide/blob/main/plugin-gradle/CHANGELOG.md
id 'dev.equo.ide' version '1.7.7' apply false
// https://github.com/gradle-nexus/publish-plugin/releases
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0' apply false
// https://plugins.gradle.org/plugin/org.jetbrains.dokka
id 'org.jetbrains.dokka' version '1.9.20' apply false
// https://plugins.gradle.org/plugin/org.jetbrains.kotlin.jvm
id 'org.jetbrains.kotlin.jvm' version '2.0.20' apply false
id 'org.jetbrains.kotlin.jvm' version '2.1.0' apply false
// https://plugins.gradle.org/plugin/org.jetbrains.kotlin.plugin.serialization
id 'org.jetbrains.kotlin.plugin.serialization' version '2.0.20' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '2.1.0' apply false
// https://plugins.gradle.org/plugin/org.jetbrains.kotlin.multiplatform
id 'org.jetbrains.kotlin.multiplatform' version '2.0.20' apply false
id 'org.jetbrains.kotlin.multiplatform' version '2.1.0' apply false
// https://github.com/adamko-dev/dokkatoo/releases
id 'dev.adamko.dokkatoo-html' version '2.3.1' apply false
id 'dev.adamko.dokkatoo-html' version '2.4.0' apply false
}

blowdryerSetup {
github 'diffplug/blowdryer-diffplug', 'tag', '8.0.2'
github 'diffplug/blowdryer-diffplug', 'tag', '8.0.3'
//devLocal '../blowdryer-diffplug'
setPluginsBlockTo {
it.file 'plugin.versions'
Expand Down
Loading