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 {
74
74
}
75
75
}
76
76
mavenCentral()
77
- maven { url " https://oss .sonatype.org/content/repositories/ snapshots/" }
77
+ // maven { url "https://central .sonatype.com/repository/maven- snapshots/" }
78
78
maven { url " https://repo.lucko.me/" }
79
79
maven { url " https://jitpack.io" }
80
80
}
Original file line number Diff line number Diff line change @@ -5,7 +5,9 @@ plugins {
5
5
dependencies {
6
6
implementation project(' :spark-common' )
7
7
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
+ }
9
11
}
10
12
11
13
processResources {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ dependencies {
17
17
implementation ' net.bytebuddy:byte-buddy-agent:1.14.17'
18
18
implementation ' com.google.protobuf:protobuf-javalite:4.28.2'
19
19
20
- implementation(' me.lucko:bytesocks-java-client:1.0-20230828.145440-5 ' ) {
20
+ implementation(' me.lucko:bytesocks-java-client:1.0-SNAPSHOT ' ) {
21
21
exclude(module : ' slf4j-api' )
22
22
}
23
23
Original file line number Diff line number Diff line change 27
27
import me .lucko .spark .common .sampler .SamplerSettings ;
28
28
import me .lucko .spark .common .sampler .SamplerType ;
29
29
import me .lucko .spark .common .sampler .window .ProfilingWindowUtils ;
30
- import me .lucko .spark .common .sampler .window .WindowStatisticsCollector ;
31
30
import me .lucko .spark .common .tick .TickHook ;
32
31
import me .lucko .spark .common .util .SparkThreadFactory ;
33
32
import me .lucko .spark .common .ws .ViewerSocket ;
Original file line number Diff line number Diff line change 16
16
import java .nio .channels .FileChannel ;
17
17
import java .nio .charset .StandardCharsets ;
18
18
import java .nio .file .Path ;
19
- import java .nio .file .Paths ;
20
19
import java .nio .file .StandardOpenOption ;
21
20
import java .util .ArrayList ;
22
21
import java .util .Collections ;
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ configurations {
28
28
29
29
dependencies {
30
30
// 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'
33
33
modImplementation ' net.fabricmc:fabric-loader:0.16.14'
34
34
35
35
Set<String > apiModules = [
@@ -40,10 +40,10 @@ dependencies {
40
40
41
41
// Add each module as a dependency
42
42
apiModules. forEach {
43
- modImplementation(fabricApi. module(it, ' 0.127.0 +1.21.6 ' ))
43
+ modImplementation(fabricApi. module(it, ' 0.128.1 +1.21.7 ' ))
44
44
}
45
45
46
- include(modImplementation(' me.lucko:fabric-permissions-api:0.4.0 ' ))
46
+ include(modImplementation(' me.lucko:fabric-permissions-api:0.4.1 ' ))
47
47
48
48
modImplementation(' eu.pb4:placeholder-api:2.7.0+1.21.6' )
49
49
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ tasks.withType(JavaCompile) {
9
9
}
10
10
11
11
minecraft {
12
- mappings channel : ' official' , version : ' 1.21.6 '
12
+ mappings channel : ' official' , version : ' 1.21.7 '
13
13
accessTransformer = file(' src/main/resources/META-INF/accesstransformer.cfg' )
14
14
reobf = false
15
15
}
@@ -20,7 +20,7 @@ configurations {
20
20
}
21
21
22
22
dependencies {
23
- minecraft ' net.minecraftforge:forge:1.21.6-56 .0.0'
23
+ minecraft ' net.minecraftforge:forge:1.21.7-57 .0.0'
24
24
annotationProcessor ' net.minecraftforge:eventbus-validator:7.0-beta.7'
25
25
shade project(' :spark-common' )
26
26
}
Original file line number Diff line number Diff line change 15
15
}
16
16
17
17
neoForge {
18
- version = " 21.6.5 -beta"
18
+ version = " 21.7.1 -beta"
19
19
validateAccessTransformers = true
20
20
21
21
runs {
Original file line number Diff line number Diff line change 30
30
31
31
import java .util .UUID ;
32
32
33
- import static java .nio .charset .StandardCharsets .UTF_8 ;
34
-
35
33
public class SpongeCommandSender extends AbstractCommandSender <Subject > {
36
34
private final CommandCause cause ;
37
35
private final Audience audience ;
Original file line number Diff line number Diff line change 23
23
import com .sun .tools .attach .VirtualMachine ;
24
24
import com .sun .tools .attach .VirtualMachineDescriptor ;
25
25
26
- import java .io .File ;
27
26
import java .lang .instrument .Instrumentation ;
28
27
import java .net .URI ;
29
- import java .nio .file .Files ;
30
28
import java .nio .file .Paths ;
31
29
import java .util .Arrays ;
32
30
import java .util .HashMap ;
You can’t perform that action at this time.
0 commit comments