SimplexCL/build.gradle
Paldiu 8569cf1510 Functionality Update
Numerous changes;
Features that may be removed:
SubCommand system
2022-02-05 22:05:33 -06:00

49 lines
923 B
Groovy

/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'
tasks {
build {
dependsOn(shadowJar)
}
}
repositories {
mavenLocal()
maven {
url = uri('https://papermc.io/repo/repository/maven-public/')
}
maven {
url = uri('https://oss.sonatype.org/content/groups/public/')
}
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
mavenCentral()
}
dependencies {
shadow 'org.reflections:reflections:0.10.2'
compileOnly 'io.papermc.paper:paper-api:1.18.1-R0.1-SNAPSHOT'
}
group = 'io.github.simplex'
version = '1.0.0'
description = 'SimplexCL'
java.sourceCompatibility = JavaVersion.VERSION_17
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}