Files
meta-plugin/build.gradle

33 lines
481 B
Groovy
Raw Permalink Normal View History

2026-03-27 10:02:59 +08:00
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.7.3'
}
group 'com.dmiki'
version '1.0.0'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenCentral()
}
dependencies {
testImplementation 'junit:junit:4.13.2'
}
intellij {
version = '2019.3'
type = 'IC'
}
patchPluginXml {
sinceBuild = '193'
untilBuild = ''
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}