Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Shevchik committed Jun 29, 2019
1 parent c2cb5a4 commit 85a4ff7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,7 @@ task updateSpigot(type: BuildLibraryTask) {
task updateRuntimeLibraries(type: UpdateLibrariesTask) {
directory = librariesRuntimeDirectory
libraries = []
manualLibraries = new HashSet<>(Arrays.asList(
updateSpigot.targetLibraryName,
"fastutil-spigot-relocated.jar"
))
manualLibraries = new HashSet<>(Arrays.asList(updateSpigot.targetLibraryName))
}

task updateShadeLibraries(type: UpdateLibrariesTask) {
Expand Down Expand Up @@ -79,6 +76,7 @@ dependencies {
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
compile fileTree(dir: librariesShadeDirectory, include: '*.jar')
shadow fileTree(dir: librariesRuntimeDirectory, include: '*.jar')
shadow fileTree(dir: new File("libraries_runtime_manual"), include: '*.jar')

annotationProcessor fileTree(dir: annotationProcessorsDirectory, include: '*.jar')
shadow fileTree(dir: annotationProcessorsDirectory, include: '*.jar')
Expand Down
Binary file not shown.

0 comments on commit 85a4ff7

Please sign in to comment.