Skip to content

Commit

Permalink
Merge pull request #1200 from Freyhold/main
Browse files Browse the repository at this point in the history
add removed dependency in last commit 8e35c5d that updated dependency
  • Loading branch information
games647 authored May 5, 2024
2 parents d58ef6b + 884a4e0 commit 47b6835
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,3 @@ updates:
# HikariCP dropped Java 8 support with 5.0
- dependency-name: "com.zaxxer:HikariCP"
update-types: ["version-update:semver-major"]
# SnakeYAML has breaking changes with 2.0
- dependency-name: "org.yaml:snakeyaml"
update-types: ["version-update:semver-major"]
13 changes: 13 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,19 @@
<version>0.8</version>
</dependency>

<!-- Include deps from craftapi if not available on platform -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.0.1-jre</version>
</dependency>

<!-- Database driver included in Spigot -->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
Expand Down
10 changes: 9 additions & 1 deletion velocity/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<name>FastLoginVelocity</name>

<properties>
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.release>17</maven.compiler.release>
</properties>

<build>
Expand Down Expand Up @@ -92,6 +92,14 @@
<exclude>com.google.code.gson:gson</exclude>
<!-- Ships the same old version -->
<exclude>com.google.guava:guava</exclude>

<exclude>org.checkerframework:checker-qual</exclude>
<exclude>com.google.errorprone:error_prone_annotations</exclude>
<exclude>com.github.ben-manes.caffeine:caffeine</exclude>

<!-- Exclude JNA implementation for WAFFLE - Windows Authentication Framework (mariadb)-->
<exclude>com.github.waffle:waffle-jna</exclude>
<exclude>net.java.dev.jna:*</exclude>
</excludes>
</artifactSet>
<transformers>
Expand Down

0 comments on commit 47b6835

Please sign in to comment.