Skip to content

Commit 9a12227

Browse files
committed
release: Version 3.1.0
1 parent 38ca77a commit 9a12227

File tree

7 files changed

+6
-14
lines changed

7 files changed

+6
-14
lines changed

.github/workflows/gradle.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,5 @@ jobs:
3030
name: LogFilter
3131
path: |-
3232
paper/build/libs/*.jar
33-
krypton/build/libs/*.jar
3433
velocity/build/libs/*.jar
3534
sponge/build/libs/*.jar
36-
waterfall/build/libs/*.jar

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@ plugins {
33
}
44

55
subprojects {
6-
repositories.mavenCentral()
6+
repositories {
7+
maven("https://repo.papermc.io/repository/maven-public/")
8+
}
79
}

common/src/main/java/io/github/_4drian3d/logfilter/common/configuration/Loader.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import java.nio.file.Path;
77
import java.util.Collections;
88
import java.util.List;
9+
import java.util.Objects;
910

1011
import org.spongepowered.configurate.ConfigurateException;
1112
import org.spongepowered.configurate.ConfigurationNode;
@@ -33,7 +34,7 @@ public static boolean loadFiles(Path dataFolder, Logger logger) {
3334
final Path configPath = dataFolder.resolve(CONFIG);
3435
if (Files.notExists(configPath)) {
3536
try (InputStream in = Configuration.class.getClassLoader().getResourceAsStream(CONFIG)) {
36-
Files.copy(in, configPath);
37+
Files.copy(Objects.requireNonNull(in), configPath);
3738
} catch (IOException e) {
3839
logger.error("Unable to create plugin configuration", e);
3940
return false;

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group = io.github._4drian3d
2-
version = 3.1.0-SNAPSHOT
2+
version = 3.1.0
33
description = Filter messages sent to your Velocity, Sponge and Paper consoles
44
url = https://github.com/4drian3d/LogFilter
55
id = logfilter

gradle/libs.versions.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ sponge-gradle = { id = "org.spongepowered.gradle.plugin", version.ref = "sponge-
3838
# Run Task
3939
runvelocity = { id = "xyz.jpenilla.run-velocity", version.ref = "runtask" }
4040
runpaper = { id = "xyz.jpenilla.run-paper", version.ref = "runtask" }
41-
runwaterfall = { id = "xyz.jpenilla.run-waterfall", version.ref = "runtask" }
4241

4342
# Plugin-yml
4443
pluginyml-bukkit = { id = "net.minecrell.plugin-yml.bukkit", version.ref = "plugin-yml" }

paper/build.gradle.kts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ plugins {
33
id("xyz.jpenilla.run-paper")
44
}
55

6-
repositories {
7-
maven("https://repo.papermc.io/repository/maven-public/")
8-
}
9-
106
dependencies {
117
compileOnly(libs.paper)
128
}

velocity/build.gradle.kts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ plugins {
33
id("xyz.jpenilla.run-velocity")
44
}
55

6-
repositories {
7-
maven("https://repo.papermc.io/repository/maven-public/")
8-
}
9-
106
dependencies {
117
compileOnly(libs.velocity)
128
annotationProcessor(libs.velocity)

0 commit comments

Comments
 (0)