Skip to content

Commit ac84711

Browse files
Cleanup
1 parent 27023e8 commit ac84711

15 files changed

+89
-424
lines changed

.github/dependabot.yml

-15
This file was deleted.

qodana.yml .github/qodana.yml

File renamed without changes.

.github/renovate.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"automerge": true,
4+
"extends": [
5+
"config:base",
6+
":semanticCommitsDisabled"
7+
],
8+
"schedule": [
9+
"weekly"
10+
],
11+
"reviewers": [
12+
"strangelookingnerd"
13+
],
14+
"labels": [
15+
"dependencies"
16+
]
17+
}

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22
.idea
33
.qodana
44
build
5+
gradle
6+
gradlew
7+
gradlew.bat

build.gradle.kts

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ fun environment(key: String) = providers.environmentVariable(key)
66

77
plugins {
88
id("java") // Java support
9-
alias(libs.plugins.kotlin) // Kotlin support
10-
alias(libs.plugins.gradleIntelliJPlugin) // Gradle IntelliJ Plugin
11-
alias(libs.plugins.changelog) // Gradle Changelog Plugin
12-
alias(libs.plugins.qodana) // Gradle Qodana Plugin
13-
alias(libs.plugins.kover) // Gradle Kover Plugin
9+
id("org.jetbrains.kotlin.jvm").version("2.0.0") // Kotlin support
10+
id("org.jetbrains.intellij").version("1.17.3") // Gradle IntelliJ Plugin
11+
id("org.jetbrains.changelog").version("2.2.0") // Gradle Changelog Plugin
12+
id("org.jetbrains.qodana").version("2024.1.5") // Gradle Qodana Plugin
13+
id("org.jetbrains.kotlinx.kover").version("0.8.1") // Gradle Kover Plugin
1414
}
1515

1616
group = properties("pluginGroup").get()
@@ -23,7 +23,7 @@ repositories {
2323

2424
// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/platforms.html#sub:version-catalog
2525
dependencies {
26-
// implementation(libs.exampleLibrary)
26+
// none
2727
}
2828

2929
// Set the JVM language level used to build the project.

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ platformVersion = 2023.2.6
1919
platformPlugins =
2020

2121
# Gradle Releases -> https://github.com/gradle/gradle/releases
22-
gradleVersion = 8.7
22+
gradleVersion = 8.8
2323

2424
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
2525
kotlin.stdlib.default.dependency = false

gradle/libs.versions.toml

-20
This file was deleted.

gradle/wrapper/gradle-wrapper.jar

-42.4 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

-7
This file was deleted.

gradlew

-249
This file was deleted.

0 commit comments

Comments
 (0)