vfo/build.gradle

22 lines
463 B
Groovy

plugins {
id 'java'
id 'org.spongepowered.plugin' version '0.9.0'
}
// This may not be required, but has solved issues in the past
compileJava.options.encoding = 'UTF-8'
// TODO: Change the following to match your information
group = 'engineering.wolfgirl'
version = '1.0.0-SNAPSHOT'
description = 'tweaks for the wolfgirl engineering walking simulator'
repositories {
jcenter()
}
dependencies {
compile 'org.spongepowered:spongeapi:7.1.0'
}