2024-09-17 10:34:11 +02: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"
|
|
|
|
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>
|
|
|
|
|
2024-09-20 11:27:17 +02:00
|
|
|
<groupId>io.github.ceticamarco</groupId>
|
2024-09-17 10:34:11 +02:00
|
|
|
<artifactId>LambdaTonic</artifactId>
|
2024-09-23 10:42:55 +02:00
|
|
|
<packaging>jar</packaging>
|
2024-10-24 09:24:19 +02:00
|
|
|
<version>0.0.4</version>
|
2024-09-20 11:27:17 +02:00
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>ceticamarco</id>
|
|
|
|
<name>Marco Cetica</name>
|
|
|
|
<email>email@marcocetica.com</email>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT License</name>
|
|
|
|
<url>https://opensource.org/licenses/MIT</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<url>https://github.com/ceticamarco/LambdaTonic</url>
|
|
|
|
<description>λTonic is functional library designed for modern Java</description>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:https://github.com/ceticamarco/LambdaTonic.git</connection>
|
|
|
|
<developerConnection>scm:git:https://github.com/ceticamarco/LambdaTonic.git</developerConnection>
|
|
|
|
<url>https://github.com/ceticamarco/LambdaTonic</url>
|
|
|
|
</scm>
|
2024-09-17 10:34:11 +02:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>22</maven.compiler.source>
|
|
|
|
<maven.compiler.target>22</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2024-09-17 11:00:21 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2024-09-17 11:50:34 +02:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2024-09-19 14:53:01 +02:00
|
|
|
<version>5.11.0</version>
|
2024-09-17 11:00:21 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2024-09-20 11:27:17 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.central</groupId>
|
|
|
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
2024-10-24 09:24:19 +02:00
|
|
|
<version>0.6.0</version>
|
2024-09-20 11:27:17 +02:00
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<publishingServerId>central</publishingServerId>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
2024-09-23 10:46:53 +02:00
|
|
|
<version>3.2.6</version>
|
2024-09-20 11:27:17 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2024-09-23 10:42:55 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.10.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>package</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>3.3.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>package</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2024-09-20 11:27:17 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2024-09-17 10:34:11 +02:00
|
|
|
</project>
|