2018-11-19 15:16:12 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-01-18 02:35:55 +01:00
|
|
|
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>
|
2018-11-19 15:16:12 +01:00
|
|
|
|
2019-03-07 11:41:45 +01:00
|
|
|
<groupId>it.cavallium</groupId>
|
|
|
|
<artifactId>strangedb</artifactId>
|
2019-04-18 16:08:22 +02:00
|
|
|
<version>1.5.7</version>
|
2018-11-19 15:16:12 +01:00
|
|
|
|
2019-03-07 16:20:34 +01:00
|
|
|
<name>strangedb-java</name>
|
2019-03-07 11:41:45 +01:00
|
|
|
<url>https://git.ignuranza.net/andreacavalli/strangedb</url>
|
2018-11-19 15:16:12 +01:00
|
|
|
|
2019-01-18 02:35:55 +01:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>10</maven.compiler.source>
|
|
|
|
<maven.compiler.target>10</maven.compiler.target>
|
|
|
|
</properties>
|
2018-11-19 15:16:12 +01:00
|
|
|
|
2019-01-18 02:35:55 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype-snapshots</id>
|
|
|
|
<name>sonatype snapshots repo</name>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2018-11-19 15:16:12 +01:00
|
|
|
|
2019-01-18 02:35:55 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.unimi.dsi</groupId>
|
|
|
|
<artifactId>fastutil</artifactId>
|
|
|
|
<version>8.2.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.esotericsoftware</groupId>
|
|
|
|
<artifactId>kryo</artifactId>
|
2019-01-22 12:33:58 +01:00
|
|
|
<version>5.0.0-RC1</version>
|
2019-01-18 02:35:55 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-03-07 16:20:34 +01:00
|
|
|
<groupId>it.cavallium</groupId>
|
|
|
|
<artifactId>strangedb-core</artifactId>
|
2019-04-18 16:08:22 +02:00
|
|
|
<version>1.5.7</version>
|
2019-01-18 02:35:55 +01:00
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2019-01-22 12:33:58 +01:00
|
|
|
<version>3.5</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>RELEASE</version>
|
|
|
|
<scope>compile</scope>
|
2019-01-18 02:35:55 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</plugin>
|
|
|
|
<!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.7.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.22.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<version>2.5.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.8.2</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
2018-11-19 15:16:12 +01:00
|
|
|
</project>
|