make macing/shield mechanic even more OP and add testserver
Some checks failed
Compile / gradle (ubuntu-latest) (push) Has been cancelled

This commit is contained in:
Justus Wolff
2026-03-05 15:44:16 +01:00
parent eab7fc2380
commit b553e36819
310 changed files with 90910 additions and 31 deletions

View File

@@ -0,0 +1,4 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Mon Mar 02 18:28:06 CET 2026
phtree-2.8.2.jar>central=
phtree-2.8.2.pom>central=

View File

@@ -0,0 +1 @@
9214be245b08ea00a4d11d36185f7c907133ccf1

View File

@@ -0,0 +1,222 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ch.ethz.globis.phtree</groupId>
<artifactId>phtree</artifactId>
<packaging>jar</packaging>
<version>2.8.2</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<name>PH-Tree</name>
<description>The PH-Tree is a multi-dimensional / spatial index</description>
<url>http://phtree.org</url>
<scm>
<connection>scm:git:git@github.com:tzaeschke/phtree.git</connection>
<developerConnection>scm:git:git@github.com:tzaeschke/phtree.git</developerConnection>
<url>https://github.com/tzaeschke/phtree</url>
<tag>phtree-2.8.2</tag>
</scm>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<developers>
<developer>
<name>Tilmann Zäschke</name>
<id>tzaeschke</id>
<email>zoodb@gmx.de</email>
</developer>
</developers>
<issueManagement>
<system>github</system>
<url>https://github.com/tzaeschke/phtree/issues</url>
</issueManagement>
<distributionManagement>
<snapshotRepository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>1.8</source>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
<!--
<compilerArgument>-Werror </compilerArgument>
-->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<argLine>@{argLine} -Xmx512m</argLine>
<printSummary>true</printSummary>
<skipTests>false</skipTests>
<includes>
<!-- include ALL tests -->
<include>**/*.java</include>
</includes>
<excludes>
<!-- exclude tests that currently fail -->
</excludes>
</configuration>
</plugin>
<!--Make sure the .java files in tst are also included in the .jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.14</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${gpg.keyname}</keyname>
<passphraseServerId>${gpg.keyname}</passphraseServerId>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.7.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<release>8</release>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
<!--
<compilerArgument>-Werror </compilerArgument>
-->
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>warnings</id>
<properties>
<showWarnings>true</showWarnings>
<compilerArgument>-Xlint:all,-rawtypes</compilerArgument>
</properties>
</profile>
</profiles>
</project>

View File

@@ -0,0 +1 @@
967e2741cd2e64b244178cc2e8bfb7abf61cafe6

View File

@@ -0,0 +1,4 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Mon Mar 02 18:28:06 CET 2026
fastutil-8.5.16.jar>central=
fastutil-8.5.16.pom>central=

View File

@@ -0,0 +1 @@
34d13fa04fc72b5d9674adc6fd765afaaccc551e

View File

@@ -0,0 +1,40 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil</artifactId>
<packaging>jar</packaging>
<name>fastutil</name>
<version>8.5.16</version>
<description>fastutil extends the Java Collections Framework by providing type-specific maps, sets, lists, and queues with a small memory footprint and fast access and insertion; it provides also big (64-bit) arrays, sets and lists, sorting algorithms, fast, practical I/O classes for binary and text files, and facilities for memory mapping large files. Note that if you have both this jar and fastutil-core.jar in your dependencies, fastutil-core.jar should be excluded.</description>
<url>http://fastutil.di.unimi.it/</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git://github.com/vigna/fastutil.git</connection>
<url>https://github.com/vigna/fastutil</url>
</scm>
<developers>
<developer>
<id>vigna</id>
<name>Sebastiano Vigna</name>
<email>sebastiano.vigna@unimi.it</email>
</developer>
</developers>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

View File

@@ -0,0 +1 @@
53f282f7c2f593c72651950249fabb7e18a5c4de

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More