pasteque-core/pom.xml
2025-07-16 09:52:34 +02:00

44 lines
1.4 KiB
XML

<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.pasteque</groupId>
<artifactId>org.pasteque.common</artifactId>
<version>8.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Pasteque Common</name>
<description>Common definition, classes and utilities to share data and behaviour between Pasteque applications.</description>
<!-- Project properties that must match those from build.xml -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<addStylesheets>
<addStylesheet>javadoc-dark.css</addStylesheet>
</addStylesheets>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20240303</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>
</project>