Skip to content
This repository was archived by the owner on Oct 13, 2024. It is now read-only.

Commit 4967ee6

Browse files
author
BuildTools
committed
Updated Dependencies
1 parent d130d60 commit 4967ee6

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Brandon Li
3+
Copyright (c) 2023 Brandon Li
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ repositories {
1515
dependencies {
1616
testImplementation("net.java.dev.jna:jna-platform:5.12.1")
1717
testImplementation("net.java.dev.jna:jna:5.12.1")
18-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2")
19-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.2")
18+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.1")
19+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.1")
2020
}
2121

2222
sourceSets {
@@ -75,6 +75,6 @@ subprojects {
7575
}
7676

7777
task<Wrapper>("wrapper") {
78-
gradleVersion = "7.5"
78+
gradleVersion = "7.5.1"
7979
}
8080
}
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/test/java/io/github/pulsebeat02/nativelibraryloader/NativeLibraryLoaderTest.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ public void testNativeLoad() {
7070
.build();
7171
loader.load(true);
7272

73-
System.out.println(
74-
DitherLib.INSTANCE.filterLiteDither(
75-
new int[] {5, 2}, new byte[] {}, new int[] {5, 3, 3}, 1));
73+
/* System.out.println(
74+
DitherLib.INSTANCE.filterLiteDither(
75+
new int[] {5, 2}, new byte[] {}, new int[] {5, 3, 3}, 1));*/
7676
}
7777
}

0 commit comments

Comments
 (0)