File tree Expand file tree Collapse file tree 10 files changed +12
-16
lines changed
src/main/java/me/lucko/spark/common/sampler/async
spark-sponge/src/main/java/me/lucko/spark/sponge
spark-standalone-agent/src/main/java/me/lucko/spark/standalone Expand file tree Collapse file tree 10 files changed +12
-16
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ subprojects {
7474 }
7575 }
7676 mavenCentral()
77- maven { url " https://oss .sonatype.org/content/repositories/ snapshots/" }
77+ // maven { url "https://central .sonatype.com/repository/maven- snapshots/" }
7878 maven { url " https://repo.lucko.me/" }
7979 maven { url " https://jitpack.io" }
8080 }
Original file line number Diff line number Diff line change @@ -5,7 +5,9 @@ plugins {
55dependencies {
66 implementation project(' :spark-common' )
77 implementation ' net.kyori:adventure-platform-bungeecord:4.4.0'
8- compileOnly ' net.md-5:bungeecord-api:1.16-R0.4'
8+ compileOnly(' net.md-5:bungeecord-api:1.19-R0.1-SNAPSHOT' ) {
9+ exclude(module : ' bungeecord-protocol' )
10+ }
911}
1012
1113processResources {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ dependencies {
1717 implementation ' net.bytebuddy:byte-buddy-agent:1.14.17'
1818 implementation ' com.google.protobuf:protobuf-javalite:4.28.2'
1919
20- implementation(' me.lucko:bytesocks-java-client:1.0-20230828.145440-5 ' ) {
20+ implementation(' me.lucko:bytesocks-java-client:1.0-SNAPSHOT ' ) {
2121 exclude(module : ' slf4j-api' )
2222 }
2323
Original file line number Diff line number Diff line change 2727import me .lucko .spark .common .sampler .SamplerSettings ;
2828import me .lucko .spark .common .sampler .SamplerType ;
2929import me .lucko .spark .common .sampler .window .ProfilingWindowUtils ;
30- import me .lucko .spark .common .sampler .window .WindowStatisticsCollector ;
3130import me .lucko .spark .common .tick .TickHook ;
3231import me .lucko .spark .common .util .SparkThreadFactory ;
3332import me .lucko .spark .common .ws .ViewerSocket ;
Original file line number Diff line number Diff line change 1616import java .nio .channels .FileChannel ;
1717import java .nio .charset .StandardCharsets ;
1818import java .nio .file .Path ;
19- import java .nio .file .Paths ;
2019import java .nio .file .StandardOpenOption ;
2120import java .util .ArrayList ;
2221import java .util .Collections ;
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ configurations {
2828
2929dependencies {
3030 // https://modmuss50.me/fabric.html
31- minecraft ' com.mojang:minecraft:1.21.6 '
32- mappings ' net.fabricmc:yarn:1.21.6 +build.1:v2'
31+ minecraft ' com.mojang:minecraft:1.21.7 '
32+ mappings ' net.fabricmc:yarn:1.21.7 +build.1:v2'
3333 modImplementation ' net.fabricmc:fabric-loader:0.16.14'
3434
3535 Set<String > apiModules = [
@@ -40,10 +40,10 @@ dependencies {
4040
4141 // Add each module as a dependency
4242 apiModules. forEach {
43- modImplementation(fabricApi. module(it, ' 0.127.0 +1.21.6 ' ))
43+ modImplementation(fabricApi. module(it, ' 0.128.1 +1.21.7 ' ))
4444 }
4545
46- include(modImplementation(' me.lucko:fabric-permissions-api:0.4.0 ' ))
46+ include(modImplementation(' me.lucko:fabric-permissions-api:0.4.1 ' ))
4747
4848 modImplementation(' eu.pb4:placeholder-api:2.7.0+1.21.6' )
4949
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ tasks.withType(JavaCompile) {
99}
1010
1111minecraft {
12- mappings channel : ' official' , version : ' 1.21.6 '
12+ mappings channel : ' official' , version : ' 1.21.7 '
1313 accessTransformer = file(' src/main/resources/META-INF/accesstransformer.cfg' )
1414 reobf = false
1515}
@@ -20,7 +20,7 @@ configurations {
2020}
2121
2222dependencies {
23- minecraft ' net.minecraftforge:forge:1.21.6-56 .0.0'
23+ minecraft ' net.minecraftforge:forge:1.21.7-57 .0.0'
2424 annotationProcessor ' net.minecraftforge:eventbus-validator:7.0-beta.7'
2525 shade project(' :spark-common' )
2626}
Original file line number Diff line number Diff line change 1515}
1616
1717neoForge {
18- version = " 21.6.5 -beta"
18+ version = " 21.7.1 -beta"
1919 validateAccessTransformers = true
2020
2121 runs {
Original file line number Diff line number Diff line change 3030
3131import java .util .UUID ;
3232
33- import static java .nio .charset .StandardCharsets .UTF_8 ;
34-
3533public class SpongeCommandSender extends AbstractCommandSender <Subject > {
3634 private final CommandCause cause ;
3735 private final Audience audience ;
Original file line number Diff line number Diff line change 2323import com .sun .tools .attach .VirtualMachine ;
2424import com .sun .tools .attach .VirtualMachineDescriptor ;
2525
26- import java .io .File ;
2726import java .lang .instrument .Instrumentation ;
2827import java .net .URI ;
29- import java .nio .file .Files ;
3028import java .nio .file .Paths ;
3129import java .util .Arrays ;
3230import java .util .HashMap ;
You can’t perform that action at this time.
0 commit comments