Skip to content

Commit

Permalink
chore: bump to 2.38 snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
darbyjack committed Jun 17, 2023
1 parent b508cad commit 01a0d4e
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,18 @@ plugins {
id 'org.jetbrains.kotlin.jvm' version '1.8.22'
id 'com.github.johnrengelman.shadow' version '7.1.2' apply false
id "com.github.ben-manes.versions" version "0.47.0"
id "net.kyori.indra" version "2.2.0"
id "net.kyori.indra.publishing" version "2.2.0"
}

allprojects {
apply plugin: 'org.jetbrains.kotlin.jvm'
apply plugin: 'net.kyori.indra'
apply plugin: 'net.kyori.indra.publishing'

archivesBaseName = 'VoteParty'
group 'me.clip'
version '2.37'
version '2.38-SNAPSHOT'

repositories {
mavenCentral()
Expand All @@ -31,13 +35,22 @@ allprojects {
compileOnly "org.spigotmc:spigot-api:1.20.1-R0.1-SNAPSHOT"
}

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
indra {
mitLicense()

javaVersions {
target(8)
}

github("darbyjack", "voteparty") {
publishing(true)
}

publishAllTo("nexus", "https://repo.glaremasters.me/repository/random-stuff/")
}

compileJava {
options.compilerArgs += ["-parameters"]
options.fork = true
options.forkOptions.executable = 'javac'
}

compileKotlin {
Expand Down

0 comments on commit 01a0d4e

Please sign in to comment.