77 lines
2.2 KiB
XML
77 lines
2.2 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>
|
|
<parent>
|
|
<groupId>net.bigeon.config</groupId>
|
|
<artifactId>ebigeon-config</artifactId>
|
|
<version>1.8.33</version>
|
|
</parent>
|
|
|
|
<groupId>net.bigeon.gclc</groupId>
|
|
<artifactId>process</artifactId>
|
|
<version>0.0.7-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>process</name>
|
|
<description>A library to handle processes in a generic console application.</description><url>https://bigeon.net/projects/gclc.html</url>
|
|
<inceptionYear>2017</inceptionYear>
|
|
<organization>
|
|
<name>Bigeon</name>
|
|
<url>https://bigeon.net</url>
|
|
</organization>
|
|
<licenses>
|
|
<license>
|
|
<distribution>manual</distribution>
|
|
<name>CeCILL 2.1</name>
|
|
<url>https://cecill.info/licences/Licence_CeCILL_V2.1-en.html</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<email>emmanuel@bigeon.fr</email>
|
|
<name>Emmanuel Bigeon</name>
|
|
<url>bigeon.net</url>
|
|
<roles>
|
|
<role>PM</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
<scm>
|
|
<tag>HEAD</tag>
|
|
<developerConnection>scm:git:gitea@git.code.bigeon.net:emmanuel/gclc-core.git</developerConnection>
|
|
</scm>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<copyright.email>emmanuel@bigeon.fr</copyright.email>
|
|
<license.licenseName>cecill_2.1</license.licenseName>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.bigeon</groupId>
|
|
<artifactId>gclc</artifactId>
|
|
<version>2.1.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.bigeon.test</groupId>
|
|
<artifactId>junitmt</artifactId>
|
|
<version>1.0.4</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.10.3</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.github.sevntu-checkstyle</groupId>
|
|
<artifactId>dsm-maven-plugin</artifactId>
|
|
<version>2.2.0</version>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
|
|
</project>
|