Skip to content

Commit a081a84

Browse files
Merge pull request #431 from VolmitSoftware/Development
Development
2 parents 29aea0f + 94d2784 commit a081a84

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+2283
-2539
lines changed

build.gradle

Lines changed: 15 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ plugins {
2323
id "de.undercouch.download" version "5.0.1"
2424
}
2525

26-
version '1.9.3-1.19.4'
26+
version '1.10.0-1.19.4'
2727
def nmsVersion = "1.19.4" //[NMS]
2828
def apiVersion = '1.19'
2929
def specialSourceVersion = '1.11.0' //[NMS]
3030
def spigotJarVersion = '1.19.4-R0.1-SNAPSHOT' //[NMS]
3131
def name = getRootProject().getName() // Defined in settings.gradle
3232
def main = 'com.volmit.adapt.Adapt'
33-
def manifoldVersion = '2023.1.0'
33+
def manifoldVersion = '2023.1.8'
3434

3535
// ADD YOURSELF AS A NEW LINE IF YOU WANT YOUR OWN BUILD TASK GENERATED
3636
// ======================== WINDOWS =============================
@@ -71,15 +71,8 @@ repositories {
7171
includeGroup("org.spigotmc")
7272
}
7373
}
74-
// maven {
75-
// url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
76-
// content {
77-
// includeGroup 'org.bukkit'
78-
// includeGroup 'org.spigotmc'
79-
// }
80-
// }
81-
maven { url = 'https://repo.extendedclip.com/content/repositories/placeholderapi/' }
8274
mavenCentral()
75+
maven { url = 'https://repo.extendedclip.com/content/repositories/placeholderapi/' }
8376
maven { url 'https://jitpack.io' }
8477
maven { url 'https://ci.ender.zone/plugin/repository/everything/' }
8578
maven { url "https://arcanearts.jfrog.io/artifactory/archives" }
@@ -106,18 +99,13 @@ shadowJar {
10699
append("plugin.yml")
107100
relocate 'manifold', 'com.volmit.adapt.util.manifold'
108101
relocate 'art.arcane', 'com.volmit.adapt.util.arcane'
109-
relocate 'io.papermc.lib', 'com.volmit.adapt.util.paper'
110-
relocate 'net.kyori', 'com.volmit.adapt.util.kyori'
111-
relocate 'ChumBukkit.extensions', 'com.volmit.adapt.util.extensions'
112-
relocate 'IrisBukkit.extensions', 'com.volmit.adapt.util.extensions'
113102
relocate 'Fukkit.extensions', 'com.volmit.adapt.util.extensions'
114103
relocate 'Amulet.extensions', 'com.volmit.adapt.util.extensions'
115104
dependencies {
116-
include(dependency('io.papermc:paperlib'))
117-
include(dependency('net.kyori:'))
118105
include(dependency('systems.manifold:'))
119106
include(dependency('xyz.xenondevs:'))
120107
include(dependency('art.arcane:'))
108+
include(dependency('io.github.mqzn:'))
121109
}
122110
}
123111

@@ -137,14 +125,13 @@ dependencies {
137125
implementation 'art.arcane:Amulet:22.7.18'
138126
implementation 'art.arcane:Fukkit:22.7.5'
139127
implementation 'art.arcane:Curse:22.11.8'
128+
implementation "io.papermc:paperlib:1.0.7"
140129
annotationProcessor 'systems.manifold:manifold-ext:' + manifoldVersion
141130
testAnnotationProcessor 'systems.manifold:manifold-ext:' + manifoldVersion
142131
implementation 'systems.manifold:manifold-rt:' + manifoldVersion
143-
implementation "io.papermc:paperlib:1.0.7"
144132

145133
//Random Api's
146134
implementation 'com.github.DeadSilenceIV:AdvancedChestsAPI:2.9-BETA'
147-
implementation 'com.elmakers.mine.bukkit:EffectLib:9.4'
148135
implementation 'com.sk89q.worldguard:worldguard-bukkit:7.0.7'
149136
implementation "com.github.FrancoBM12:API-MagicCosmetics:1.9.85"
150137
implementation 'me.clip:placeholderapi:2.11.2'
@@ -153,18 +140,19 @@ dependencies {
153140
implementation 'com.massivecraft:Factions:1.6.9.5-U0.6.21'
154141
implementation "com.github.angeschossen:ChestProtectAPI:3.6.0"
155142
implementation "com.github.TechFortress:GriefPrevention:16.18.1"
156-
compileOnly fileTree(dir: 'libs', include: ['*.jar'])
157-
158-
// Shaded
159-
implementation 'net.kyori:adventure-text-minimessage:4.12.0'
160-
implementation 'net.kyori:adventure-platform-bukkit:4.1.2'
161-
implementation 'net.kyori:adventure-api:4.12.0'
162143
implementation 'xyz.xenondevs:particle:1.8.1'
163144

164145
// Dynamically Loaded
165-
implementation 'com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2'
166-
implementation 'org.apache.commons:commons-lang3:3.12.0'
167-
implementation 'com.google.code.gson:gson:2.10'
146+
compileOnly 'com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2'
147+
compileOnly 'org.apache.commons:commons-lang3:3.12.0'
148+
compileOnly 'com.google.code.gson:gson:2.10'
149+
compileOnly 'com.elmakers.mine.bukkit:EffectLib:9.4'
150+
compileOnly 'net.kyori:adventure-text-minimessage:4.13.1'
151+
compileOnly 'net.kyori:adventure-platform-bukkit:4.3.0'
152+
compileOnly 'net.kyori:adventure-api:4.13.1'
153+
compileOnly 'io.github.mqzn:mCommands-spigot:1.0.9'
154+
compileOnly 'io.github.mqzn:mCommands-common:1.0.9'
155+
compileOnly fileTree(dir: 'libs', include: ['*.jar'])
168156
}
169157

170158
if (JavaVersion.current().toString() != "17") {

0 commit comments

Comments
 (0)