mirror of
https://github.com/usatiuk/dhfs.git
synced 2025-10-28 20:47:49 +01:00
make some packages test only
All checks were successful
Server / build (push) Successful in 19m55s
All checks were successful
Server / build (push) Successful in 19m55s
This commit is contained in:
@@ -40,6 +40,7 @@
|
||||
<dependency>
|
||||
<groupId>org.testcontainers</groupId>
|
||||
<artifactId>testcontainers</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.bouncycastle</groupId>
|
||||
@@ -122,6 +123,7 @@
|
||||
<dependency>
|
||||
<groupId>org.jboss.slf4j</groupId>
|
||||
<artifactId>slf4j-jboss-logmanager</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-codec</groupId>
|
||||
@@ -190,7 +192,7 @@
|
||||
</native.image.path>
|
||||
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
|
||||
<buildDirectory>${project.build.directory}</buildDirectory>
|
||||
<junit.jupiter.execution.parallel.enabled>true</junit.jupiter.execution.parallel.enabled>
|
||||
<junit.jupiter.execution.parallel.enabled>false</junit.jupiter.execution.parallel.enabled>
|
||||
<junit.jupiter.execution.parallel.mode.default>
|
||||
concurrent
|
||||
</junit.jupiter.execution.parallel.mode.default>
|
||||
|
||||
@@ -4,7 +4,6 @@ import com.usatiuk.dhfs.storage.objects.repository.distributed.ConflictResolver;
|
||||
import io.quarkus.logging.Log;
|
||||
import jakarta.annotation.Nullable;
|
||||
import org.apache.commons.lang3.NotImplementedException;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.*;
|
||||
@@ -13,7 +12,7 @@ import java.util.concurrent.locks.ReentrantReadWriteLock;
|
||||
|
||||
public class JObject<T extends JObjectData> implements Serializable, Comparable<JObject<?>> {
|
||||
@Override
|
||||
public int compareTo(@NotNull JObject<?> o) {
|
||||
public int compareTo(JObject<?> o) {
|
||||
return getName().compareTo(o.getName());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user