init
This commit is contained in:
32
build.gradle
Normal file
32
build.gradle
Normal file
@@ -0,0 +1,32 @@
|
||||
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'
|
||||
}
|
||||
Reference in New Issue
Block a user