FileSponge/pom.xml

192 lines
6.0 KiB
XML
Raw Permalink Normal View History

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/>.
-->
2022-04-27 14:36:56 +02:00
<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>
2020-09-23 22:45:55 +02:00
2022-04-27 14:36:56 +02:00
<groupId>org.warp.filesponge</groupId>
<artifactId>FileSponge</artifactId>
2023-08-22 13:05:40 +02:00
<version>0.3.2</version>
2020-09-23 22:45:55 +02:00
2022-04-27 14:36:56 +02:00
<name>FileSponge</name>
2020-09-23 22:45:55 +02:00
2022-04-27 14:36:56 +02:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2020-09-23 22:45:55 +02:00
2022-04-27 14:36:56 +02: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>
2022-01-10 22:59:13 +01:00
<distributionManagement>
<repository>
<id>mchv-release-distribution</id>
<name>MCHV Release Apache Maven Packages Distribution</name>
<url>https://mvn.mchv.eu/repository/mchv</url>
</repository>
<snapshotRepository>
<id>mchv-snapshot-distribution</id>
<name>MCHV Snapshot Apache Maven Packages Distribution</name>
<url>https://mvn.mchv.eu/repository/mchv-snapshot</url>
</snapshotRepository>
</distributionManagement>
2021-03-07 15:50:11 +01:00
2022-04-27 14:36:56 +02:00
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.soabase.record-builder</groupId>
2023-04-20 11:30:10 +02:00
<artifactId>record-builder-core</artifactId>
2022-04-27 14:36:56 +02:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
</dependency>
<dependency>
<groupId>it.cavallium</groupId>
<artifactId>dbengine</artifactId>
2022-06-30 15:06:47 +02:00
<exclusions>
<exclusion>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</exclusion>
</exclusions>
2022-04-27 14:36:56 +02:00
</dependency>
</dependencies>
2020-09-23 22:45:55 +02:00
2022-04-27 14:36:56 +02:00
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
2022-09-07 23:29:36 +02:00
<version>5.9.0</version>
2022-04-27 14:36:56 +02:00
</dependency>
<dependency>
<groupId>io.soabase.record-builder</groupId>
2023-04-20 11:30:10 +02:00
<artifactId>record-builder-core</artifactId>
2023-04-13 17:06:04 +02:00
<version>36</version>
2022-04-27 14:36:56 +02:00
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
2023-03-29 00:47:27 +02:00
<version>24.0.1</version>
2022-04-27 14:36:56 +02:00
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
2023-06-07 21:58:19 +02:00
<version>3.5.6</version>
2022-04-27 14:36:56 +02:00
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
2023-06-07 21:58:19 +02:00
<version>3.5.6</version>
2021-10-27 22:37:39 +02:00
<scope>test</scope>
2022-04-27 14:36:56 +02:00
</dependency>
<dependency>
<groupId>it.cavallium</groupId>
<artifactId>dbengine</artifactId>
2024-04-10 18:47:10 +02:00
<version>4.2.0</version>
2022-04-27 14:36:56 +02:00
</dependency>
</dependencies>
</dependencyManagement>
2021-06-08 13:06:13 +02:00
2022-04-27 14:36:56 +02:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2023-09-25 02:11:49 +02:00
<version>3.11.0</version>
2022-04-27 14:36:56 +02:00
<configuration>
2024-03-22 17:20:31 +01:00
<release>22</release>
2023-04-20 11:30:10 +02:00
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>io.soabase.record-builder</groupId>
<artifactId>record-builder-processor</artifactId>
<version>33</version>
</annotationProcessorPath>
</annotationProcessorPaths>
<annotationProcessors>
<annotationProcessor>io.soabase.recordbuilder.processor.RecordBuilderProcessor</annotationProcessor>
</annotationProcessors>
2022-04-27 14:36:56 +02:00
</configuration>
</plugin>
</plugins>
<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-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</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>