Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- plugins {
- `maven-publish`
- id("io.freefair.lombok") version "8.0.1" apply false
- id("io.papermc.paperweight.userdev") version "1.5.5" apply false
- id("xyz.jpenilla.run-paper") version "2.1.0"
- }
- allprojects {
- group = "me.shurikennen.hopperlevels"
- version = "1.0.0-SNAPSHOT"
- apply {
- plugin("maven-publish")
- }
- }
- subprojects {
- apply {
- plugin("java-library")
- plugin("io.freefair.lombok")
- plugin("io.papermc.paperweight.userdev")
- }
- repositories {
- mavenLocal()
- mavenCentral()
- }
- publishing {
- publications {
- repositories {
- // Use `gradle publishMavenPublicationToMavenLocal` to install it into your local .m2 folder
- mavenLocal()
- }
- }
- }
- tasks.withType<JavaCompile> {
- options.encoding = "UTF-8"
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment