Skip to content

Commit

Permalink
project metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcinVaadin committed Oct 14, 2024
1 parent 59d755d commit 51bbed2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .idea/codeStyles/Project.xml

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

9 changes: 9 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.intellij.platform.gradle.TestFrameworkType

plugins {
id("java")
id("org.jetbrains.kotlin.jvm") version "1.9.21"
Expand Down Expand Up @@ -48,7 +50,12 @@ dependencies {
pluginVerifier()
zipSigner()
instrumentationTools()

testFramework(TestFrameworkType.Platform)
}

testImplementation(kotlin("test"))
testImplementation("junit:junit:4.13.2")
}

configure<com.diffplug.gradle.spotless.SpotlessExtension> {
Expand Down Expand Up @@ -84,4 +91,6 @@ tasks {
channels.set(listOf(publishChannel))
token.set(System.getenv("PUBLISH_TOKEN"))
}

test { useJUnitPlatform() }
}

0 comments on commit 51bbed2

Please sign in to comment.