-
Notifications
You must be signed in to change notification settings - Fork 84
Few little optimisations #365
base: master
Are you sure you want to change the base?
Changes from 4 commits
2c2e703
36fb0ae
beb221c
c6d2600
636e7b6
dc6731b
4ff4644
4f0f4af
961820d
38cbe6e
e2cda97
392058d
c58cf15
7c8bf14
23c4925
ef37ae2
c97f630
7864b34
1e23b17
25937e7
85145b4
41fdd06
209f4fd
b1f7f2a
3b418fc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -59,7 +59,7 @@ | |
| <dependency> | ||
| <groupId>it.unimi.dsi</groupId> | ||
| <artifactId>fastutil</artifactId> | ||
| <version>8.5.6</version> | ||
| <version>8.5.8</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>net.jafama</groupId> | ||
|
|
@@ -69,7 +69,7 @@ | |
| <dependency> | ||
| <groupId>net.sf.jopt-simple</groupId> | ||
| <artifactId>jopt-simple</artifactId> | ||
| <version>3.2</version> | ||
| <version>5.0.4</version> | ||
| <type>jar</type> | ||
| <scope>compile</scope> | ||
| </dependency> | ||
|
|
@@ -100,23 +100,6 @@ | |
| <artifactId>log4j-core</artifactId> | ||
| <version>2.17.1</version> | ||
| <scope>compile</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.logging.log4j</groupId> | ||
| <artifactId>log4j-api</artifactId> | ||
| <version>2.17.1</version> | ||
| <scope>compile</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.logging.log4j</groupId> | ||
| <artifactId>log4j-slf4j-impl</artifactId> | ||
| <version>2.17.1</version> | ||
| <scope>compile</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.logging.log4j</groupId> | ||
| <artifactId>log4j-iostreams</artifactId> | ||
| <version>2.17.1</version> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it safe to remove these?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would say. Paper only use the log4j core and the other thing I don't remember currently but we have that too. And my anticheat has a fix for log4j which only activates if the server didn't done it before. Isn't a 100% trust but if paper do it, I guess
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Even though it would be safe, I don't think it's recommended to combine multiple versions of a library. |
||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.slf4j</groupId> | ||
|
|
@@ -151,7 +134,7 @@ | |
| <dependency> | ||
| <groupId>com.velocitypowered</groupId> | ||
| <artifactId>velocity-native</artifactId> | ||
| <version>1.1.0-SNAPSHOT</version> | ||
| <version>3.1.0</version> | ||
|
crafter23456 marked this conversation as resolved.
Outdated
|
||
| </dependency> | ||
|
|
||
| <dependency> | ||
|
|
@@ -169,8 +152,8 @@ | |
| <url>https://maven.elmakers.com/repository/</url> | ||
| </repository> | ||
| <repository> | ||
| <id>velocity-repo</id> | ||
| <url>https://repo.velocitypowered.com/snapshots/</url> | ||
| <id>velocity</id> | ||
| <url>https://nexus.velocitypowered.com/repository/maven-public/</url> | ||
| </repository> | ||
| </repositories> | ||
|
|
||
|
|
@@ -180,26 +163,26 @@ | |
| <defaultGoal>install</defaultGoal> | ||
| <plugins> | ||
| <plugin> | ||
| <groupId>com.lukegb.mojo</groupId> | ||
| <artifactId>gitdescribe-maven-plugin</artifactId> | ||
| <version>1.3</version> | ||
| <groupId>net.md-5</groupId> | ||
| <artifactId>scriptus</artifactId> | ||
| <version>0.4</version> | ||
| <configuration> | ||
| <outputPrefix>git-NachoSpigot-</outputPrefix> | ||
| <scmDirectory>..</scmDirectory> | ||
| </configuration> | ||
| <executions> | ||
| <execution> | ||
| <phase>compile</phase> | ||
| <phase>initialize</phase> | ||
| <goals> | ||
| <goal>gitdescribe</goal> | ||
| <goal>describe</goal> | ||
| </goals> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-jar-plugin</artifactId> | ||
| <version>2.5</version> | ||
| <version>3.2.2</version> | ||
| <configuration> | ||
| <finalName>NachoSpigot</finalName> | ||
| <forceCreation>true</forceCreation> <!-- Required to prevent shading the jar multiple times --> | ||
|
|
@@ -312,7 +295,7 @@ | |
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <version>3.8.1</version> | ||
| <version>3.10.0</version> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.