mirror of
https://github.com/chylex/IntelliJ-Keyboard-Master.git
synced 2025-05-05 20:34:07 +02:00
23 lines
424 B
Plaintext
23 lines
424 B
Plaintext
plugins {
|
|
kotlin("jvm") version "1.5.10"
|
|
id("org.jetbrains.intellij") version "1.2.0"
|
|
java
|
|
}
|
|
|
|
group = "com.chylex.intellij.keyboardmaster"
|
|
version = "0.1.3"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("stdlib"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
|
|
}
|
|
|
|
intellij {
|
|
version.set("2021.2.2")
|
|
}
|