You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
HuskSync/build.gradle

41 lines
1009 B
Groovy

buildscript {
repositories {
mavenCentral()
}
}
3 years ago
plugins {
id 'com.github.johnrengelman.shadow' version '7.1.0' apply false
id 'java'
}
3 years ago
allprojects {
group 'me.William278'
version '1.2'
3 years ago
compileJava { options.encoding = 'UTF-8' }
tasks.withType(JavaCompile) { options.encoding = 'UTF-8' }
javadoc { options.encoding = 'UTF-8' }
}
3 years ago
logger.lifecycle('Building HuskSync v' + version.toString())
subprojects {
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'
apply plugin: 'maven-publish'
compileJava {
options.release = 16
3 years ago
}
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
maven { url 'https://repo.velocitypowered.com/snapshots/' }
maven { url 'https://repo.minebench.de/' }
maven { url 'https://repo.codemc.org/repository/maven-public' }
maven { url 'https://jitpack.io' }
3 years ago
}
}