mirror of
https://github.com/HMCore/Core.git
synced 2025-12-12 13:56:19 +00:00
33 lines
767 B
Groovy
33 lines
767 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.jetbrains.kotlin.jvm' version '1.5.0'
|
|
id 'com.github.johnrengelman.shadow' version '7.0.0'
|
|
id 'maven-publish'
|
|
}
|
|
|
|
group 'com.github.HMCore'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib"
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
|
implementation 'org.apache.logging.log4j:log4j-api:2.14.1'
|
|
implementation 'org.apache.logging.log4j:log4j-core:2.14.1'
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.1'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|