LambdaTonic/pom.xml

100 lines
3.5 KiB
XML
Raw Normal View History

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>
<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>
<version>0.0.2</version>
<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>
<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>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.5.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<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>
</plugins>
</build>
2024-09-17 10:34:11 +02:00
</project>