2020-09-23 22:45:55 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
~ FileSponge
|
|
|
|
~ Copyright (C) 2020 Andrea Cavalli
|
|
|
|
~
|
|
|
|
~ This program is free software: you can redistribute it and/or modify
|
|
|
|
~ it under the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation, either version 3 of the License, or
|
|
|
|
~ (at your option) any later version.
|
|
|
|
~
|
|
|
|
~ This program is distributed in the hope that it will be useful,
|
|
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
~ GNU General Public License for more details.
|
|
|
|
~
|
|
|
|
~ You should have received a copy of the GNU General Public License
|
|
|
|
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<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>org.warp.filesponge</groupId>
|
|
|
|
<artifactId>FileSponge</artifactId>
|
|
|
|
<version>0.1.0</version>
|
|
|
|
|
|
|
|
<name>FileSponge</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.release>11</maven.compiler.release>
|
2020-09-23 23:58:54 +02:00
|
|
|
<maven.compiler.>11</maven.compiler.>
|
2020-09-23 22:45:55 +02:00
|
|
|
</properties>
|
|
|
|
|
2021-03-07 15:50:11 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>mchv-release</id>
|
|
|
|
<name>MCHV Release Apache Maven Packages</name>
|
|
|
|
<url>https://mvn.mchv.eu/repository/mchv</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>mchv-snapshot</id>
|
|
|
|
<name>MCHV Snapshot Apache Maven Packages</name>
|
|
|
|
<url>https://mvn.mchv.eu/repository/mchv-snapshot</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2020-09-23 22:45:55 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
2021-05-09 22:58:04 +02:00
|
|
|
<version>5.8.0-M1</version>
|
2020-09-23 22:45:55 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-09-23 23:58:54 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2021-04-12 02:36:52 +02:00
|
|
|
<version>1.18.20</version>
|
2020-09-23 23:58:54 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
2021-05-09 22:58:04 +02:00
|
|
|
<version>20.1.0</version>
|
2020-09-23 23:58:54 +02:00
|
|
|
</dependency>
|
2020-09-25 21:22:34 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.warp</groupId>
|
|
|
|
<artifactId>common-utils</artifactId>
|
2021-05-07 12:08:06 +02:00
|
|
|
<version>1.1.3</version>
|
2020-09-25 21:22:34 +02:00
|
|
|
</dependency>
|
2021-01-11 01:29:53 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.projectreactor</groupId>
|
|
|
|
<artifactId>reactor-core</artifactId>
|
2021-04-15 00:01:05 +02:00
|
|
|
<version>3.4.5</version>
|
2021-01-11 01:29:53 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.projectreactor</groupId>
|
|
|
|
<artifactId>reactor-test</artifactId>
|
2021-04-15 00:01:05 +02:00
|
|
|
<version>3.4.5</version>
|
2021-01-11 01:29:53 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-03-07 15:50:11 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>it.cavallium</groupId>
|
|
|
|
<artifactId>dbengine</artifactId>
|
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2020-09-23 22:45:55 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2020-09-23 23:58:54 +02:00
|
|
|
<sourceDirectory>src/main/lombok</sourceDirectory>
|
2021-01-11 01:29:53 +01:00
|
|
|
<testSourceDirectory>src/test/lombok</testSourceDirectory>
|
2020-09-23 23:58:54 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.0</version>
|
|
|
|
|
|
|
|
<configuration>
|
|
|
|
<annotationProcessorPaths>
|
|
|
|
<annotationProcessorPath>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2021-04-12 02:36:52 +02:00
|
|
|
<version>1.18.20</version>
|
2020-09-23 23:58:54 +02:00
|
|
|
</annotationProcessorPath>
|
|
|
|
</annotationProcessorPaths>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2020-09-23 22:45:55 +02:00
|
|
|
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
|
|
|
|
<plugins>
|
|
|
|
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
</plugin>
|
|
|
|
<!-- default lifecycle, jar packaging: see https://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.8.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>
|
|
|
|
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<version>3.7.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</project>
|