Added .m2 folder
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 22:13:35 CEST 2023
|
||||
hppc-parent-0.5.2.pom>central=
|
||||
@@ -0,0 +1,334 @@
|
||||
<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/maven-v4_0_0.xsd">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<!-- We use SonaType for publishing artefacts. Parent POM makes things easier here. -->
|
||||
<parent>
|
||||
<groupId>org.sonatype.oss</groupId>
|
||||
<artifactId>oss-parent</artifactId>
|
||||
<version>7</version>
|
||||
</parent>
|
||||
|
||||
<!-- Project info. -->
|
||||
<groupId>com.carrotsearch</groupId>
|
||||
<artifactId>hppc-parent</artifactId>
|
||||
<version>0.5.2</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>HPPC (parent POM)</name>
|
||||
<description>Parent POM for HPPC projects (High Performance Primitive Collections)</description>
|
||||
<url>http://labs.carrotsearch.com/hppc.html</url>
|
||||
|
||||
|
||||
<!-- Extended project info. -->
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<organization>
|
||||
<name>Carrot Search s.c.</name>
|
||||
<url>http://www.carrotsearch.com</url>
|
||||
</organization>
|
||||
|
||||
<issueManagement>
|
||||
<system>Jira</system>
|
||||
<url>http://issues.carrot2.org/browse/HPPC</url>
|
||||
</issueManagement>
|
||||
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>Announcements and bug reports mailing list</name>
|
||||
<subscribe>java-high-performance-primitive-collections+subscribe@googlegroups.com</subscribe>
|
||||
<unsubscribe>java-high-performance-primitive-collections+unsubscribe@googlegroups.com</unsubscribe>
|
||||
<post>java-high-performance-primitive-collections@googlegroups.com</post>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
|
||||
<scm>
|
||||
<url>git@github.com:carrotsearch/hppc.git</url>
|
||||
<connection>scm:git:git@github.com:carrotsearch/hppc.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:carrotsearch/hppc.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>dawid.weiss</id>
|
||||
<name>Dawid Weiss</name>
|
||||
<email>dawid.weiss@carrotsearch.com</email>
|
||||
</developer>
|
||||
|
||||
<developer>
|
||||
<id>stanislaw.osinski</id>
|
||||
<name>Stanisław Osiński</name>
|
||||
<email>stanislaw.osinski@carrotsearch.com</email>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<!-- Global properties. -->
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>1.6</maven.compiler.source>
|
||||
<maven.compiler.target>1.6</maven.compiler.target>
|
||||
|
||||
<skip.deployment>false</skip.deployment>
|
||||
</properties>
|
||||
|
||||
<modules>
|
||||
<module>hppc-templateprocessor</module>
|
||||
<module>hppc-core</module>
|
||||
<module>hppc-examples</module>
|
||||
<module>hppc-benchmarks</module>
|
||||
</modules>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.carrotsearch</groupId>
|
||||
<artifactId>junit-benchmarks</artifactId>
|
||||
<version>0.6.0</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
<version>14.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.11</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.9.0</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>2.4.1</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>2.3.2</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.3.1</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.3.1</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.8.1</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
<version>2.7.1</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>2.2</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>2.3.2</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
<configuration>
|
||||
<skip>${deployed}</skip>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.7</version>
|
||||
<inherited>true</inherited>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant-nodeps</artifactId>
|
||||
<version>1.8.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant-trax</artifactId>
|
||||
<version>1.8.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant-junit</artifactId>
|
||||
<version>1.8.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>sun.jdk</groupId>
|
||||
<artifactId>tools</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>${java.home}/../lib/tools.jar</systemPath>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>2.2.1</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<configuration>
|
||||
<detectJavaApiLink>false</detectJavaApiLink>
|
||||
<detectLinks>false</detectLinks>
|
||||
<detectOfflineLinks>false</detectOfflineLinks>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.1.2</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-eclipse-plugin</artifactId>
|
||||
<version>2.8</version>
|
||||
<configuration>
|
||||
<downloadSources>true</downloadSources>
|
||||
<downloadJavadocs>true</downloadJavadocs>
|
||||
<buildOutputDirectory>${project.build.directory}/eclipse</buildOutputDirectory>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<configuration>
|
||||
<useReleaseProfile>true</useReleaseProfile>
|
||||
<releaseProfiles>release</releaseProfiles>
|
||||
<goals>deploy</goals>
|
||||
<autoVersionSubmodules>true</autoVersionSubmodules>
|
||||
<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<configuration>
|
||||
<skip>${skip.deployment}</skip>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-maven3</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireMavenVersion>
|
||||
<version>[3.0.3,)</version>
|
||||
<message>Maven 3.0.3 or later is required.</message>
|
||||
</requireMavenVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>eclipse</id>
|
||||
|
||||
<build>
|
||||
<defaultGoal>eclipse:eclipse</defaultGoal>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>sign</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.1</version>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>**/*.gz</exclude>
|
||||
<exclude>**/*.zip</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 22:13:35 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692389515792
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692389615958
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692389415528
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692389615901
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact com.carrotsearch\:hppc-parent\:pom\:0.5.2 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact com.carrotsearch\:hppc-parent\:pom\:0.5.2 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692389415661
|
||||
@@ -0,0 +1 @@
|
||||
c1be47031b26d5ffafea9b3937070fdaa29de8ba
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 06:11:43 CEST 2023
|
||||
hppc-parent-0.7.2.pom>central=
|
||||
@@ -0,0 +1,549 @@
|
||||
<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/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.sonatype.oss</groupId>
|
||||
<artifactId>oss-parent</artifactId>
|
||||
<version>9</version>
|
||||
</parent>
|
||||
|
||||
<groupId>com.carrotsearch</groupId>
|
||||
<artifactId>hppc-parent</artifactId>
|
||||
<version>0.7.2</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>HPPC (parent POM)</name>
|
||||
<description>Parent POM for HPPC projects (High Performance Primitive Collections)</description>
|
||||
<url>http://labs.carrotsearch.com/hppc.html</url>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<organization>
|
||||
<name>Carrot Search s.c.</name>
|
||||
<url>http://www.carrotsearch.com</url>
|
||||
</organization>
|
||||
|
||||
<issueManagement>
|
||||
<system>Jira</system>
|
||||
<url>http://issues.carrot2.org/browse/HPPC</url>
|
||||
</issueManagement>
|
||||
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>Announcements and bug reports mailing list</name>
|
||||
<subscribe>java-high-performance-primitive-collections+subscribe@googlegroups.com</subscribe>
|
||||
<unsubscribe>java-high-performance-primitive-collections+unsubscribe@googlegroups.com</unsubscribe>
|
||||
<post>java-high-performance-primitive-collections@googlegroups.com</post>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
|
||||
<scm>
|
||||
<url>git@github.com:carrotsearch/hppc.git</url>
|
||||
<connection>scm:git:git@github.com:carrotsearch/hppc.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:carrotsearch/hppc.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>dawid.weiss</id>
|
||||
<name>Dawid Weiss</name>
|
||||
<email>dawid.weiss@carrotsearch.com</email>
|
||||
</developer>
|
||||
|
||||
<developer>
|
||||
<id>stanislaw.osinski</id>
|
||||
<name>Stanisław Osiński</name>
|
||||
<email>stanislaw.osinski@carrotsearch.com</email>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>1.7</maven.compiler.source>
|
||||
<maven.compiler.target>1.7</maven.compiler.target>
|
||||
|
||||
<version.guava>18.0</version.guava>
|
||||
<version.junit>4.12</version.junit>
|
||||
<version.jmh>1.6.2</version.jmh>
|
||||
<version.assertj>2.0.0</version.assertj>
|
||||
<version.randomizedtesting>2.1.14</version.randomizedtesting>
|
||||
<version.antlr>4.5</version.antlr>
|
||||
<version.velocity>1.7</version.velocity>
|
||||
<version.forbiddenapis>1.8</version.forbiddenapis>
|
||||
|
||||
<version.fastutil>7.0.2</version.fastutil>
|
||||
<version.koloboke>0.6.6</version.koloboke>
|
||||
|
||||
<version.maven-assembly-plugin>2.5.2</version.maven-assembly-plugin>
|
||||
<version.maven-bundle-plugin>3.0.0</version.maven-bundle-plugin>
|
||||
<version.maven-clean-plugin>2.5</version.maven-clean-plugin>
|
||||
<version.maven-compiler-plugin>3.1</version.maven-compiler-plugin>
|
||||
<version.maven-dependency-plugin>2.9</version.maven-dependency-plugin>
|
||||
<version.maven-deploy-plugin>2.8.2</version.maven-deploy-plugin>
|
||||
<version.maven-install-plugin>2.5.2</version.maven-install-plugin>
|
||||
<version.maven-jar-plugin>2.5</version.maven-jar-plugin>
|
||||
<version.maven-resources-plugin>2.6</version.maven-resources-plugin>
|
||||
<version.maven-surefire-plugin>2.17</version.maven-surefire-plugin>
|
||||
<version.maven-enforcer-plugin>1.4</version.maven-enforcer-plugin>
|
||||
<version.maven-javadoc-plugin>2.10.3</version.maven-javadoc-plugin>
|
||||
<version.maven-versions-plugin>2.1</version.maven-versions-plugin>
|
||||
<version.maven-buildhelper-plugin>1.9.1</version.maven-buildhelper-plugin>
|
||||
<version.maven-shade-plugin>2.2</version.maven-shade-plugin>
|
||||
|
||||
<version.maven.api>3.2.3</version.maven.api>
|
||||
|
||||
<gpg.passphrase></gpg.passphrase>
|
||||
</properties>
|
||||
|
||||
<prerequisites>
|
||||
<maven>${version.maven.api}</maven>
|
||||
</prerequisites>
|
||||
|
||||
<modules>
|
||||
<module>hppc</module>
|
||||
<module>hppc-template-processor</module>
|
||||
<module>hppc-benchmarks</module>
|
||||
<module>hppc-examples</module>
|
||||
</modules>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
<version>${version.guava}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>${version.junit}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.assertj</groupId>
|
||||
<artifactId>assertj-core</artifactId>
|
||||
<version>${version.assertj}</version>
|
||||
<type>jar</type>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.carrotsearch.randomizedtesting</groupId>
|
||||
<artifactId>randomizedtesting-runner</artifactId>
|
||||
<version>${version.randomizedtesting}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>${version.maven-assembly-plugin}</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.antlr</groupId>
|
||||
<artifactId>antlr4-maven-plugin</artifactId>
|
||||
<version>${version.antlr}</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
<version>${version.maven-versions-plugin}</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>${version.maven-clean-plugin}</version>
|
||||
<configuration>
|
||||
<excludeDefaultDirectories>true</excludeDefaultDirectories>
|
||||
<filesets>
|
||||
<fileset>
|
||||
<directory>${project.build.directory}</directory>
|
||||
<excludes>
|
||||
<exclude>eclipse/**</exclude>
|
||||
</excludes>
|
||||
</fileset>
|
||||
</filesets>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>${version.maven-compiler-plugin}</version>
|
||||
<configuration>
|
||||
<source>${maven.compiler.source}</source>
|
||||
<target>${maven.compiler.target}</target>
|
||||
<compilerArgs>
|
||||
<arg>-Xlint</arg>
|
||||
</compilerArgs>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>${version.maven-deploy-plugin}</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>${version.maven-install-plugin}</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>${version.maven-jar-plugin}</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>${version.maven-javadoc-plugin}</version>
|
||||
<configuration>
|
||||
<detectJavaApiLink>false</detectJavaApiLink>
|
||||
<detectLinks>false</detectLinks>
|
||||
<detectOfflineLinks>false</detectOfflineLinks>
|
||||
<quiet>true</quiet>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>${version.maven-resources-plugin}</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>${version.maven-surefire-plugin}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default-test</id>
|
||||
<phase>none</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>com.carrotsearch.randomizedtesting</groupId>
|
||||
<artifactId>junit4-maven-plugin</artifactId>
|
||||
<version>${version.randomizedtesting}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>junit4-tests</id>
|
||||
<goals>
|
||||
<goal>junit4</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<includes>
|
||||
<include>**/*Test.*</include>
|
||||
</includes>
|
||||
<excludes>
|
||||
<exclude>**/*$*</exclude>
|
||||
<exclude>**/Abstract*</exclude>
|
||||
</excludes>
|
||||
|
||||
<parallelism>auto</parallelism>
|
||||
<maxMemory>750m</maxMemory>
|
||||
|
||||
<listeners>
|
||||
<report-text
|
||||
showThrowable="false"
|
||||
showStackTraces="false"
|
||||
showOutput="onError"
|
||||
showStatusOk="false"
|
||||
showStatusError="false"
|
||||
showStatusFailure="false"
|
||||
showStatusIgnored="false"
|
||||
showSuiteSummary="true" />
|
||||
|
||||
<report-json file="${project.build.directory}/surefire-reports/test-results.html" />
|
||||
<report-ant-xml dir="${project.build.directory}/surefire-reports/" mavenExtensions="true" />
|
||||
</listeners>
|
||||
|
||||
<assertions>
|
||||
<enable package="com.carrotsearch" />
|
||||
</assertions>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>de.thetaphi</groupId>
|
||||
<artifactId>forbiddenapis</artifactId>
|
||||
<version>${version.forbiddenapis}</version>
|
||||
|
||||
<executions>
|
||||
<execution>
|
||||
<id>check-forbidden-apis</id>
|
||||
<configuration>
|
||||
<targetVersion>1.7</targetVersion>
|
||||
<internalRuntimeForbidden>true</internalRuntimeForbidden>
|
||||
<failOnUnsupportedJava>false</failOnUnsupportedJava>
|
||||
<failOnMissingClasses>false</failOnMissingClasses>
|
||||
<excludes><!-- Override in subprojects. -->
|
||||
</excludes>
|
||||
<bundledSignatures>
|
||||
<bundledSignature>jdk-unsafe</bundledSignature>
|
||||
<bundledSignature>jdk-deprecated</bundledSignature>
|
||||
<bundledSignature>jdk-system-out</bundledSignature>
|
||||
</bundledSignatures>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>check-forbidden-apis-tests</id>
|
||||
<configuration>
|
||||
<targetVersion>1.7</targetVersion>
|
||||
<internalRuntimeForbidden>true</internalRuntimeForbidden>
|
||||
<failOnUnsupportedJava>false</failOnUnsupportedJava>
|
||||
<failOnMissingClasses>false</failOnMissingClasses>
|
||||
<excludes><!-- Override in subprojects. -->
|
||||
</excludes>
|
||||
<bundledSignatures>
|
||||
<bundledSignature>jdk-unsafe</bundledSignature>
|
||||
<bundledSignature>jdk-deprecated</bundledSignature>
|
||||
</bundledSignatures>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>testCheck</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>${version.maven-enforcer-plugin}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-environment</id>
|
||||
<phase>verify</phase>
|
||||
<inherited>false</inherited>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireJavaVersion>
|
||||
<version>1.7.0</version>
|
||||
</requireJavaVersion>
|
||||
<requireMavenVersion>
|
||||
<version>${version.maven.api}</version>
|
||||
</requireMavenVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>enforce-maven</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<phase>none</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<version>${version.maven-bundle-plugin}</version>
|
||||
<extensions>true</extensions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>quick</id>
|
||||
<properties>
|
||||
<skipTests>true</skipTests>
|
||||
</properties>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>eclipse-builds</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>m2e.version</name>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<directory>target/eclipse</directory>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>eclipse</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>m2e.version</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
<!-- Skip compilation, installation or testing. -->
|
||||
<maven.test.skip>true</maven.test.skip>
|
||||
<maven.main.skip>true</maven.main.skip>
|
||||
<forbiddenapis.skip>true</forbiddenapis.skip>
|
||||
<skipTests>true</skipTests>
|
||||
</properties>
|
||||
<build>
|
||||
<defaultGoal>install antrun:run</defaultGoal>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default-cli</id>
|
||||
<phase>none</phase>
|
||||
<inherited>false</inherited>
|
||||
<configuration>
|
||||
<target>
|
||||
<presetdef name="copy">
|
||||
<copy overwrite="true" />
|
||||
</presetdef>
|
||||
<condition property="onwin">
|
||||
<os family="windows" />
|
||||
</condition>
|
||||
|
||||
<fileset id="id:settings" dir="etc/eclipse/settings" />
|
||||
<copy todir="hppc-template-processor/.settings"><fileset refid="id:settings" /></copy>
|
||||
<copy todir="hppc/.settings"> <fileset refid="id:settings" /></copy>
|
||||
<copy todir="hppc-benchmarks/.settings"> <fileset refid="id:settings" /></copy>
|
||||
<copy todir="hppc-examples/.settings"> <fileset refid="id:settings" /></copy>
|
||||
|
||||
<copy todir=".">
|
||||
<fileset dir="etc/eclipse/configs" />
|
||||
<filtermapper>
|
||||
<replacestring from="_" to="." />
|
||||
</filtermapper>
|
||||
<filterchain unless:true="${onwin}" xmlns:unless="ant:unless">
|
||||
<tokenfilter>
|
||||
<filetokenizer />
|
||||
<replacestring from=".bat" to="" />
|
||||
</tokenfilter>
|
||||
</filterchain>
|
||||
</copy>
|
||||
</target>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.9.4</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.eclipse.m2e</groupId>
|
||||
<artifactId>lifecycle-mapping</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<configuration>
|
||||
<lifecycleMappingMetadata>
|
||||
<pluginExecutions>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>de.thetaphi</groupId>
|
||||
<artifactId>forbiddenapis</artifactId>
|
||||
<versionRange>[0.0.0,)</versionRange>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
<goal>testCheck</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>com.carrotsearch</groupId>
|
||||
<artifactId>hppc-template-processor</artifactId>
|
||||
<versionRange>[0.0.0,)</versionRange>
|
||||
<goals>
|
||||
<goal>template-processor</goal>
|
||||
<goal>add-source</goal>
|
||||
<goal>add-test-source</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<execute>
|
||||
<runOnIncremental>false</runOnIncremental>
|
||||
<runOnConfiguration>true</runOnConfiguration>
|
||||
</execute>
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<versionRange>[3.4,)</versionRange>
|
||||
<goals>
|
||||
<goal>descriptor</goal>
|
||||
<goal>helpmojo</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore></ignore>
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<versionRange>[0.0,)</versionRange>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore></ignore>
|
||||
</action>
|
||||
</pluginExecution>
|
||||
</pluginExecutions>
|
||||
</lifecycleMappingMetadata>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 06:11:43 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692418203305
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692418303473
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692418102998
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692418303414
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact com.carrotsearch\:hppc-parent\:pom\:0.7.2 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact com.carrotsearch\:hppc-parent\:pom\:0.7.2 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692418103172
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692418102859
|
||||
@@ -0,0 +1 @@
|
||||
78fa99632bc639f6df49ce62780b842bcd04788b
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 23:56:20 CEST 2023
|
||||
hppc-0.5.2.jar>central=
|
||||
hppc-0.5.2.pom>central=
|
||||
@@ -0,0 +1,12 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 14:41:12 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692535271999
|
||||
@default-central-https\://repo.maven.apache.org/maven2/.lastUpdated=1692535272002
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692535272001
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:javadoc\:0.5.2 from/to ukp-oss-snapshots (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:javadoc\:0.5.2 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Network is unreachable
|
||||
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692535271996
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:javadoc\:0.5.2 from/to ukp-oss-model-releases (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:javadoc\:0.5.2 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Network is unreachable
|
||||
https\://repo.maven.apache.org/maven2/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:javadoc\:0.5.2 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
|
||||
@default-ukp-oss-snapshots-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692535271997
|
||||
@@ -0,0 +1,12 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 03:35:38 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692495318183
|
||||
@default-central-https\://repo.maven.apache.org/maven2/.lastUpdated=1692495338210
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692495318186
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:sources\:0.5.2 from/to ukp-oss-snapshots (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:sources\:0.5.2 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: basa.ltl.uni-due.de
|
||||
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692495298160
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:sources\:0.5.2 from/to ukp-oss-model-releases (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:sources\:0.5.2 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: basa.ltl.uni-due.de
|
||||
https\://repo.maven.apache.org/maven2/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:sources\:0.5.2 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
|
||||
@default-ukp-oss-snapshots-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692495298162
|
||||
Binary file not shown.
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 23:56:20 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692393182753
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692395780019
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692391079537
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692395300431
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:0.5.2 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:0.5.2 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692391080787
|
||||
@@ -0,0 +1 @@
|
||||
074bcc9d152a928a4ea9ac59a5b45850bf00cd4e
|
||||
@@ -0,0 +1,501 @@
|
||||
<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/maven-v4_0_0.xsd">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>com.carrotsearch</groupId>
|
||||
<artifactId>hppc-parent</artifactId>
|
||||
<version>0.5.2</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<!-- Project info. -->
|
||||
<groupId>com.carrotsearch</groupId>
|
||||
<artifactId>hppc</artifactId>
|
||||
<version>0.5.2</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>HPPC Collections</name>
|
||||
<description>High Performance Primitive Collections.
|
||||
Fundamental data structures (maps, sets, lists, stacks, queues) generated for
|
||||
combinations of object and primitive types to conserve JVM memory and speed
|
||||
up execution.</description>
|
||||
|
||||
<!-- We'll use a snapshot version of junit4 plugin. -->
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>sonatype-snapshots</id>
|
||||
<name>SonaType Snapshots Plugin Repository</name>
|
||||
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||
<layout>default</layout>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
|
||||
<!-- Dependencies. -->
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.carrotsearch.randomizedtesting</groupId>
|
||||
<artifactId>randomizedtesting-runner</artifactId>
|
||||
<version>2.0.10</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
||||
<properties>
|
||||
<retrotranslator.version>1.2.9</retrotranslator.version>
|
||||
<backport-util-concurrent.version>3.1</backport-util-concurrent.version>
|
||||
</properties>
|
||||
|
||||
<!-- Build tuning. -->
|
||||
<build>
|
||||
<defaultGoal>install</defaultGoal>
|
||||
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-eclipse-plugin</artifactId>
|
||||
<configuration>
|
||||
<buildcommands>
|
||||
<buildCommand>
|
||||
<name>org.ui.externaltools.ExternalToolBuilder</name>
|
||||
<triggers>auto,full,</triggers>
|
||||
<arguments>
|
||||
<LaunchConfigHandle><project>/.externalToolBuilders/HPPC-generate-sources.launch</LaunchConfigHandle>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
</buildCommand>
|
||||
</buildcommands>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<!-- We don't want to use surefire to run our tests so we skip it. -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<skipTests>true</skipTests>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
|
||||
<plugins>
|
||||
<!-- Generate sources for primitives from template. -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
|
||||
<executions>
|
||||
<execution>
|
||||
<id>generate.sources</id>
|
||||
<phase>generate-sources</phase>
|
||||
<configuration>
|
||||
<target>
|
||||
<property name="classpath" refid="maven.plugin.classpath" />
|
||||
<echo file="${project.basedir}/.builder.classpath">${classpath}</echo>
|
||||
<ant antfile="${basedir}/build.xml" />
|
||||
</target>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
|
||||
<execution>
|
||||
<id>antrun-retrotranslate-jdk15</id>
|
||||
<phase>package</phase>
|
||||
<configuration>
|
||||
<target>
|
||||
<taskdef name="retrotranslator"
|
||||
classname="net.sf.retrotranslator.transformer.RetrotranslatorTask"
|
||||
classpathref="maven.plugin.classpath" />
|
||||
|
||||
<retrotranslator verbose="true" verify="false"
|
||||
failonwarning="true" target="1.5" embed="com.carrotsearch.hppc.backport"
|
||||
destjar="${project.build.directory}/${project.build.finalName}-jdk15.jar">
|
||||
|
||||
<jarfileset dir="${project.build.directory}"
|
||||
includes="${project.build.finalName}.jar" />
|
||||
|
||||
<classpath>
|
||||
<pathelement location="${basedir}/src/main/retrotranslator" />
|
||||
</classpath>
|
||||
<classpath refid="maven.plugin.classpath" />
|
||||
<classpath refid="maven.compile.classpath" />
|
||||
<classpath>
|
||||
<fileset dir="${java.home}/lib" includes="rt.jar" />
|
||||
</classpath>
|
||||
</retrotranslator>
|
||||
|
||||
<attachartifact
|
||||
file="${project.build.directory}/${project.build.finalName}-jdk15.jar"
|
||||
classifier="jdk15" type="jar" />
|
||||
</target>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.carrotsearch</groupId>
|
||||
<artifactId>hppc-templateprocessor</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>net.sf.retrotranslator</groupId>
|
||||
<artifactId>retrotranslator-transformer</artifactId>
|
||||
<version>${retrotranslator.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>net.sf.retrotranslator</groupId>
|
||||
<artifactId>retrotranslator-runtime</artifactId>
|
||||
<version>${retrotranslator.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>backport-util-concurrent</groupId>
|
||||
<artifactId>backport-util-concurrent</artifactId>
|
||||
<version>${backport-util-concurrent.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
|
||||
<!-- Add generated source locations. -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
|
||||
<executions>
|
||||
<execution>
|
||||
<id>add-source</id>
|
||||
<phase>generate-sources</phase>
|
||||
<goals>
|
||||
<goal>add-source</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<sources>
|
||||
<source>${project.basedir}/src/main/templates</source>
|
||||
<source>${project.build.directory}/generated-sources/main/java</source>
|
||||
</sources>
|
||||
</configuration>
|
||||
</execution>
|
||||
|
||||
<execution>
|
||||
<id>add-test-source</id>
|
||||
<phase>generate-sources</phase>
|
||||
<goals>
|
||||
<goal>add-test-source</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<sources>
|
||||
<source>${project.basedir}/src/test/templates</source>
|
||||
<source>${project.build.directory}/generated-sources/test/java</source>
|
||||
</sources>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- Run tests with JUnit4 instead. A simple configuration here. -->
|
||||
<plugin>
|
||||
<groupId>com.carrotsearch.randomizedtesting</groupId>
|
||||
<artifactId>junit4-maven-plugin</artifactId>
|
||||
<version>2.0.8</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>junit4-tests</id>
|
||||
<goals>
|
||||
<goal>junit4</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<includes>
|
||||
<include>**/*Test.*</include>
|
||||
</includes>
|
||||
<excludes>
|
||||
<exclude>**/*$*</exclude>
|
||||
<exclude>**/Abstract*</exclude>
|
||||
</excludes>
|
||||
|
||||
<parallelism>auto</parallelism>
|
||||
<maxMemory>750m</maxMemory>
|
||||
|
||||
<!-- Attach a simple listener. -->
|
||||
<listeners>
|
||||
<report-text
|
||||
showThrowable="false"
|
||||
showStackTraces="false"
|
||||
showOutput="onError"
|
||||
|
||||
showStatusOk="false"
|
||||
showStatusError="false"
|
||||
showStatusFailure="false"
|
||||
showStatusIgnored="false"
|
||||
|
||||
showSuiteSummary="true"
|
||||
/>
|
||||
|
||||
<report-json file="${project.build.directory}/surefire-reports/test-results.html" />
|
||||
<report-ant-xml dir="${project.build.directory}/surefire-reports/" mavenExtensions="true" />
|
||||
</listeners>
|
||||
|
||||
<assertions>
|
||||
<enable package="com.carrotsearch"/>
|
||||
</assertions>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.0</version>
|
||||
<configuration>
|
||||
<reportPlugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
<configuration>
|
||||
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
|
||||
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
|
||||
</configuration>
|
||||
<reports>
|
||||
<report>dependencies</report>
|
||||
<report>scm</report>
|
||||
</reports>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<id>cpd</id>
|
||||
<reports>
|
||||
<report>cpd</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
<configuration>
|
||||
<targetJdk>${maven.compiler.target}</targetJdk>
|
||||
<aggregate>true</aggregate>
|
||||
<excludes>
|
||||
<exclude>**/BitUtil.java</exclude>
|
||||
<exclude>**/BitSet.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
<version>2.10</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<id>main</id>
|
||||
<reports>
|
||||
<report>report-only</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
<configuration>
|
||||
<linkXRef>false</linkXRef>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>2.3.2</version>
|
||||
<configuration>
|
||||
<excludeFilterFile>${basedir}/src/main/findbugs/excludes.xml</excludeFilterFile>
|
||||
<findbugsXmlOutput>true</findbugsXmlOutput>
|
||||
<includeTests>false</includeTests>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</reportPlugins>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<!-- Execute clover code coverage reports via ANT. -->
|
||||
<profile>
|
||||
<id>clover</id>
|
||||
|
||||
<build>
|
||||
<defaultGoal>integration-test</defaultGoal>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>clover</id>
|
||||
<phase>integration-test</phase>
|
||||
<configuration>
|
||||
<target>
|
||||
<ant antfile="${basedir}/src/ant/clover.xml"
|
||||
inheritRefs="true" inheritAll="true">
|
||||
<property name="version" value="${project.version}" />
|
||||
<target name="test" />
|
||||
</ant>
|
||||
</target>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.cenqua.clover</groupId>
|
||||
<artifactId>clover</artifactId>
|
||||
<version>3.0.2</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<!-- Labs' site rsync assembly. -->
|
||||
<profile>
|
||||
<id>site-labs</id>
|
||||
|
||||
<build>
|
||||
<defaultGoal>assembly:single</defaultGoal>
|
||||
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>make-labs-assembly</id>
|
||||
<phase>install</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<descriptors>
|
||||
<descriptor>src/main/assembly/site-labs.xml</descriptor>
|
||||
</descriptors>
|
||||
<attach>false</attach>
|
||||
<appendAssemblyId>false</appendAssemblyId>
|
||||
<finalName>site-labs</finalName>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<!-- Release mode (javadocs, sources, zip/tgz bundles, signing). -->
|
||||
<profile>
|
||||
<id>release</id>
|
||||
|
||||
<build>
|
||||
<defaultGoal>package</defaultGoal>
|
||||
|
||||
<plugins>
|
||||
<!-- Attach and modify JavaDocs. -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<configuration>
|
||||
<encoding>${project.build.sourceEncoding}</encoding>
|
||||
<docfilessubdirs>true</docfilessubdirs>
|
||||
<windowtitle>HPPC v${project.version} API Documentation (JavaDoc)</windowtitle>
|
||||
<doctitle>HPPC v${project.version} API Documentation</doctitle>
|
||||
<header><![CDATA[<div id='header'><a class='logo' target='_top' href='http://labs.carrotsearch.com'></a>High Performance Primitive Collections (HPPC) v${project.version} <br>API Documentation</div>]]></header>
|
||||
<overview>${basedir}/src/main/java/com/carrotsearch/hppc/overview.html</overview>
|
||||
<failonerror>true</failonerror>
|
||||
<use>false</use>
|
||||
<groups>
|
||||
<group>
|
||||
<title>HPPC</title>
|
||||
<packages>com.carrotsearch.hppc*</packages>
|
||||
</group>
|
||||
</groups>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- Attach sources -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- Configure assembly of ZIP and TAR.GZ bundles (stand-alone distributions). -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>make-release-assembly</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<descriptors>
|
||||
<descriptor>src/main/assembly/bin.xml</descriptor>
|
||||
</descriptors>
|
||||
<tarLongFileMode>gnu</tarLongFileMode>
|
||||
<attach>false</attach>
|
||||
<appendAssemblyId>false</appendAssemblyId>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 22:10:15 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692389315199
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692389415378
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692389214940
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692389415318
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact com.carrotsearch\:hppc\:pom\:0.5.2 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact com.carrotsearch\:hppc\:pom\:0.5.2 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692389215085
|
||||
@@ -0,0 +1 @@
|
||||
e305426647157d15f801c8a66a08f51e36382a81
|
||||
@@ -0,0 +1,13 @@
|
||||
#Sun Aug 20 14:41:12 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692495338211
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|javadoc=1692535272002
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|javadoc=1692535272002
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|javadoc=1692535272002
|
||||
central|https\://repo.maven.apache.org/maven2|javadoc=1692535272002
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692495338211
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692495338211
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692495338211
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692495338211
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|javadoc=1692535272002
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|javadoc=1692535272002
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692495338211
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 12:12:17 CEST 2023
|
||||
hppc-0.7.2.jar>central=
|
||||
hppc-0.7.2.pom>central=
|
||||
@@ -0,0 +1,14 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 10:41:04 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692693664584
|
||||
@default-central-https\://repo.maven.apache.org/maven2/.lastUpdated=1692693664588
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692693664587
|
||||
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692693664582
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:javadoc\:0.7.2 from/to ukp-oss-model-releases (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
@default-ukp-oss-snapshots-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692693664583
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692693664580
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:javadoc\:0.7.2 from/to ukp-oss-snapshots (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:javadoc\:0.7.2 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Network is unreachable
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:javadoc\:0.7.2 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Network is unreachable
|
||||
https\://repo.maven.apache.org/maven2/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:javadoc\:0.7.2 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
|
||||
@@ -0,0 +1,14 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 14:41:10 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692535270509
|
||||
@default-central-https\://repo.maven.apache.org/maven2/.lastUpdated=1692535270512
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692535270511
|
||||
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692535270507
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:sources\:0.7.2 from/to ukp-oss-model-releases (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
@default-ukp-oss-snapshots-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692535270508
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692535270505
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:sources\:0.7.2 from/to ukp-oss-snapshots (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:sources\:0.7.2 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Network is unreachable
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:sources\:0.7.2 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Network is unreachable
|
||||
https\://repo.maven.apache.org/maven2/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:sources\:0.7.2 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
|
||||
Binary file not shown.
@@ -0,0 +1,13 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 12:12:17 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692436300320
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692439937173
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692432788812
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692439803721
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:0.7.2 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact com.carrotsearch\:hppc\:jar\:0.7.2 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692432790699
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692432777743
|
||||
@@ -0,0 +1 @@
|
||||
710398361f2ae8fd594a133e3619045c16b24137
|
||||
@@ -0,0 +1,487 @@
|
||||
<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/maven-v4_0_0.xsd">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>com.carrotsearch</groupId>
|
||||
<artifactId>hppc-parent</artifactId>
|
||||
<version>0.7.2</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>hppc</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
|
||||
<name>HPPC Collections</name>
|
||||
<description>High Performance Primitive Collections.
|
||||
Fundamental data structures (maps, sets, lists, stacks, queues) generated for
|
||||
combinations of object and primitive types to conserve JVM memory and speed
|
||||
up execution.</description>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.carrotsearch</groupId>
|
||||
<artifactId>hppc-template-processor</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<scope>provided</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.carrotsearch.randomizedtesting</groupId>
|
||||
<artifactId>randomizedtesting-runner</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.assertj</groupId>
|
||||
<artifactId>assertj-core</artifactId>
|
||||
<type>jar</type>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<properties>
|
||||
<template.processor.incremental>true</template.processor.incremental>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<defaultGoal>install</defaultGoal>
|
||||
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>**/ByteByte*</exclude>
|
||||
<exclude>**/ByteChar*</exclude>
|
||||
<exclude>**/ByteShort*</exclude>
|
||||
<exclude>**/ByteInt*</exclude>
|
||||
<exclude>**/ByteFloat*</exclude>
|
||||
<exclude>**/ByteLong*</exclude>
|
||||
<exclude>**/ByteDouble*</exclude>
|
||||
<exclude>**/ByteObject*</exclude>
|
||||
|
||||
<exclude>**/ByteHashSet*</exclude>
|
||||
<exclude>**/ByteScatterSet*</exclude>
|
||||
<exclude>**/ByteSet*</exclude>
|
||||
|
||||
<exclude>**/FloatByte*</exclude>
|
||||
<exclude>**/FloatChar*</exclude>
|
||||
<exclude>**/FloatShort*</exclude>
|
||||
<exclude>**/FloatInt*</exclude>
|
||||
<exclude>**/FloatFloat*</exclude>
|
||||
<exclude>**/FloatLong*</exclude>
|
||||
<exclude>**/FloatDouble*</exclude>
|
||||
<exclude>**/FloatObject*</exclude>
|
||||
|
||||
<exclude>**/FloatHashSet*</exclude>
|
||||
<exclude>**/FloatScatterSet*</exclude>
|
||||
<exclude>**/FloatSet*</exclude>
|
||||
|
||||
<exclude>**/DoubleByte*</exclude>
|
||||
<exclude>**/DoubleChar*</exclude>
|
||||
<exclude>**/DoubleShort*</exclude>
|
||||
<exclude>**/DoubleInt*</exclude>
|
||||
<exclude>**/DoubleFloat*</exclude>
|
||||
<exclude>**/DoubleLong*</exclude>
|
||||
<exclude>**/DoubleDouble*</exclude>
|
||||
<exclude>**/DoubleObject*</exclude>
|
||||
|
||||
<exclude>**/DoubleHashSet*</exclude>
|
||||
<exclude>**/DoubleScatterSet*</exclude>
|
||||
<exclude>**/DoubleSet*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>attach-sources-esoteric</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<classifier>esoteric-sources</classifier>
|
||||
<includes>
|
||||
<include>**/ByteByte*</include>
|
||||
<include>**/ByteChar*</include>
|
||||
<include>**/ByteShort*</include>
|
||||
<include>**/ByteInt*</include>
|
||||
<include>**/ByteFloat*</include>
|
||||
<include>**/ByteLong*</include>
|
||||
<include>**/ByteDouble*</include>
|
||||
<include>**/ByteObject*</include>
|
||||
|
||||
<include>**/ByteHashSet*</include>
|
||||
<include>**/ByteScatterSet*</include>
|
||||
<include>**/ByteSet*</include>
|
||||
|
||||
<include>**/FloatByte*</include>
|
||||
<include>**/FloatChar*</include>
|
||||
<include>**/FloatShort*</include>
|
||||
<include>**/FloatInt*</include>
|
||||
<include>**/FloatFloat*</include>
|
||||
<include>**/FloatLong*</include>
|
||||
<include>**/FloatDouble*</include>
|
||||
<include>**/FloatObject*</include>
|
||||
|
||||
<include>**/FloatHashSet*</include>
|
||||
<include>**/FloatScatterSet*</include>
|
||||
<include>**/FloatSet*</include>
|
||||
|
||||
<include>**/DoubleByte*</include>
|
||||
<include>**/DoubleChar*</include>
|
||||
<include>**/DoubleShort*</include>
|
||||
<include>**/DoubleInt*</include>
|
||||
<include>**/DoubleFloat*</include>
|
||||
<include>**/DoubleLong*</include>
|
||||
<include>**/DoubleDouble*</include>
|
||||
<include>**/DoubleObject*</include>
|
||||
|
||||
<include>**/DoubleHashSet*</include>
|
||||
<include>**/DoubleScatterSet*</include>
|
||||
<include>**/DoubleSet*</include>
|
||||
</includes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default-jar</id>
|
||||
<phase>package</phase>
|
||||
<configuration>
|
||||
<!-- HPPC-144: esoteric combinations. -->
|
||||
<excludes>
|
||||
<exclude>**/ByteByte*</exclude>
|
||||
<exclude>**/ByteChar*</exclude>
|
||||
<exclude>**/ByteShort*</exclude>
|
||||
<exclude>**/ByteInt*</exclude>
|
||||
<exclude>**/ByteFloat*</exclude>
|
||||
<exclude>**/ByteLong*</exclude>
|
||||
<exclude>**/ByteDouble*</exclude>
|
||||
<exclude>**/ByteObject*</exclude>
|
||||
|
||||
<exclude>**/ByteHashSet*</exclude>
|
||||
<exclude>**/ByteScatterSet*</exclude>
|
||||
<exclude>**/ByteSet*</exclude>
|
||||
|
||||
<exclude>**/FloatByte*</exclude>
|
||||
<exclude>**/FloatChar*</exclude>
|
||||
<exclude>**/FloatShort*</exclude>
|
||||
<exclude>**/FloatInt*</exclude>
|
||||
<exclude>**/FloatFloat*</exclude>
|
||||
<exclude>**/FloatLong*</exclude>
|
||||
<exclude>**/FloatDouble*</exclude>
|
||||
<exclude>**/FloatObject*</exclude>
|
||||
|
||||
<exclude>**/FloatHashSet*</exclude>
|
||||
<exclude>**/FloatScatterSet*</exclude>
|
||||
<exclude>**/FloatSet*</exclude>
|
||||
|
||||
<exclude>**/DoubleByte*</exclude>
|
||||
<exclude>**/DoubleChar*</exclude>
|
||||
<exclude>**/DoubleShort*</exclude>
|
||||
<exclude>**/DoubleInt*</exclude>
|
||||
<exclude>**/DoubleFloat*</exclude>
|
||||
<exclude>**/DoubleLong*</exclude>
|
||||
<exclude>**/DoubleDouble*</exclude>
|
||||
<exclude>**/DoubleObject*</exclude>
|
||||
|
||||
<exclude>**/DoubleHashSet*</exclude>
|
||||
<exclude>**/DoubleScatterSet*</exclude>
|
||||
<exclude>**/DoubleSet*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>esoteric-jar</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<classifier>esoteric</classifier>
|
||||
<includes>
|
||||
<include>**/ByteByte*</include>
|
||||
<include>**/ByteChar*</include>
|
||||
<include>**/ByteShort*</include>
|
||||
<include>**/ByteInt*</include>
|
||||
<include>**/ByteFloat*</include>
|
||||
<include>**/ByteLong*</include>
|
||||
<include>**/ByteDouble*</include>
|
||||
<include>**/ByteObject*</include>
|
||||
|
||||
<include>**/ByteHashSet*</include>
|
||||
<include>**/ByteScatterSet*</include>
|
||||
<include>**/ByteSet*</include>
|
||||
|
||||
<include>**/FloatByte*</include>
|
||||
<include>**/FloatChar*</include>
|
||||
<include>**/FloatShort*</include>
|
||||
<include>**/FloatInt*</include>
|
||||
<include>**/FloatFloat*</include>
|
||||
<include>**/FloatLong*</include>
|
||||
<include>**/FloatDouble*</include>
|
||||
<include>**/FloatObject*</include>
|
||||
|
||||
<include>**/FloatHashSet*</include>
|
||||
<include>**/FloatScatterSet*</include>
|
||||
<include>**/FloatSet*</include>
|
||||
|
||||
<include>**/DoubleByte*</include>
|
||||
<include>**/DoubleChar*</include>
|
||||
<include>**/DoubleShort*</include>
|
||||
<include>**/DoubleInt*</include>
|
||||
<include>**/DoubleFloat*</include>
|
||||
<include>**/DoubleLong*</include>
|
||||
<include>**/DoubleDouble*</include>
|
||||
<include>**/DoubleObject*</include>
|
||||
|
||||
<include>**/DoubleHashSet*</include>
|
||||
<include>**/DoubleScatterSet*</include>
|
||||
<include>**/DoubleSet*</include>
|
||||
</includes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>esoteric-bundle</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>bundle</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<classifier>esoteric</classifier>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>com.carrotsearch</groupId>
|
||||
<artifactId>hppc-template-processor</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>generate-sources</id>
|
||||
<phase>generate-sources</phase>
|
||||
<goals>
|
||||
<goal>template-processor</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<incremental>${template.processor.incremental}</incremental>
|
||||
<attachSources>main</attachSources>
|
||||
<templatesDir>${project.basedir}/src/main/templates</templatesDir>
|
||||
<outputDir>${project.build.directory}/generated-sources/main/java</outputDir>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>generate-test-sources</id>
|
||||
<phase>generate-test-sources</phase>
|
||||
<goals>
|
||||
<goal>template-processor</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<incremental>${template.processor.incremental}</incremental>
|
||||
<attachSources>test</attachSources>
|
||||
<templatesDir>${project.basedir}/src/test/templates</templatesDir>
|
||||
<outputDir>${project.build.directory}/generated-sources/test/java</outputDir>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>com.carrotsearch.randomizedtesting</groupId>
|
||||
<artifactId>junit4-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>make-release-assembly</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<descriptors>
|
||||
<descriptor>src/main/assembly/bin.xml</descriptor>
|
||||
</descriptors>
|
||||
<tarLongFileMode>gnu</tarLongFileMode>
|
||||
<attach>false</attach>
|
||||
<appendAssemblyId>false</appendAssemblyId>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>de.thetaphi</groupId>
|
||||
<artifactId>forbiddenapis</artifactId>
|
||||
|
||||
<executions>
|
||||
<execution>
|
||||
<id>check-forbidden-apis</id>
|
||||
<configuration>
|
||||
<excludes><!-- Override in subprojects. -->
|
||||
</excludes>
|
||||
<signaturesFiles>
|
||||
<signaturesFile>${project.parent.basedir}/etc/forbidden-apis/intrinsics.txt</signaturesFile>
|
||||
<signaturesFile>${project.parent.basedir}/etc/forbidden-apis/time-relative.txt</signaturesFile>
|
||||
</signaturesFiles>
|
||||
<suppressAnnotations>
|
||||
<suppressAnnotation>com.carrotsearch.hppc.SuppressForbidden</suppressAnnotation>
|
||||
</suppressAnnotations>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>eclipse</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>m2e.version</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
<!-- Skip compilation. -->
|
||||
<maven.test.skip>true</maven.test.skip>
|
||||
<maven.main.skip>true</maven.main.skip>
|
||||
<maven.install.skip>true</maven.install.skip>
|
||||
<forbiddenapis.skip>true</forbiddenapis.skip>
|
||||
</properties>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>com.carrotsearch</groupId>
|
||||
<artifactId>hppc-template-processor</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>add-templates</id>
|
||||
<phase>generate-sources</phase>
|
||||
<goals>
|
||||
<goal>add-source</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<sources>
|
||||
<source>src/main/templates</source>
|
||||
</sources>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>add-templates-tests</id>
|
||||
<phase>generate-test-sources</phase>
|
||||
<goals>
|
||||
<goal>add-test-source</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<sources>
|
||||
<source>src/test/templates</source>
|
||||
</sources>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>sonatype-oss-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<configuration>
|
||||
<encoding>${project.build.sourceEncoding}</encoding>
|
||||
<windowtitle>HPPC v${project.version} API Documentation</windowtitle>
|
||||
<doctitle>HPPC v${project.version} API Documentation</doctitle>
|
||||
<header><![CDATA[<div id='header'><a class='logo' target='_top' href='http://labs.carrotsearch.com'></a>High Performance Primitive Collections (HPPC) v${project.version} <br>API Documentation</div>]]></header>
|
||||
<failOnError>true</failOnError>
|
||||
<docfilessubdirs>true</docfilessubdirs>
|
||||
<use>false</use>
|
||||
<noindex>true</noindex>
|
||||
<notree>true</notree>
|
||||
<groups>
|
||||
<group>
|
||||
<title>HPPC</title>
|
||||
<packages>com.carrotsearch.hppc*</packages>
|
||||
</group>
|
||||
</groups>
|
||||
<stylesheetfile>css/1.7/stylesheet.css</stylesheetfile>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>jdk18</id>
|
||||
<activation>
|
||||
<jdk>[1.8,)</jdk>
|
||||
</activation>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<configuration>
|
||||
<additionalparam>-Xdoclint:-missing</additionalparam>
|
||||
<stylesheetfile>css/1.8/stylesheet.css</stylesheetfile>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1,13 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 06:08:22 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692418002678
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692418102851
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692417902428
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692418102800
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact com.carrotsearch\:hppc\:pom\:0.7.2 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact com.carrotsearch\:hppc\:pom\:0.7.2 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692417902580
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692417902271
|
||||
@@ -0,0 +1 @@
|
||||
435d950009b6ae04c30a69e296d352e49d38528f
|
||||
@@ -0,0 +1,15 @@
|
||||
#Tue Aug 22 10:41:04 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692535270512
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|javadoc=1692693664588
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|javadoc=1692693664588
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|javadoc=1692693664588
|
||||
central|https\://repo.maven.apache.org/maven2|javadoc=1692693664588
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692535270512
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692535270512
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692535270512
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692535270512
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|javadoc=1692693664588
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|javadoc=1692693664588
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|javadoc=1692693664588
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|sources=1692535270512
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692535270512
|
||||
Reference in New Issue
Block a user