Skip to content

Commit

Permalink
1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
IzzelAliz committed Jan 21, 2021
1 parent 028b1e9 commit 9190aa7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'io.izzel.arclight'
version '1.12'
version '1.13'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class ArclightGradlePlugin implements Plugin<Project> {
def arclightExt = project.extensions.create('arclight', ArclightExtension, project)
def conf = project.configurations.create('arclight')
project.configurations.compile.extendsFrom(conf)
def buildTools = project.file("${arclightExt.sharedSpigot ? project.buildDir : project.rootProject.buildDir}/arclight_cache/buildtools")
def buildTools = project.file("${arclightExt.sharedSpigot ? project.rootProject.buildDir : project.buildDir}/arclight_cache/buildtools")
def buildToolsFile = new File(buildTools, 'BuildTools.jar')
def downloadSpigot = project.tasks.create('downloadBuildTools', DownloadBuildToolsTask, {
it.output = buildToolsFile
Expand Down

0 comments on commit 9190aa7

Please sign in to comment.