85 lines
2.5 KiB
XML
85 lines
2.5 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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>net.bigeon.config</groupId>
|
|
<artifactId>ebigeon-config</artifactId>
|
|
<version>1.8.21</version>
|
|
</parent>
|
|
<groupId>net.bigeon</groupId>
|
|
<artifactId>gclc</artifactId>
|
|
<version>2.0.11-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
<name>Generic Command Ligne console</name>
|
|
<description>A generic framework for console applications, with customized command input and output streams.</description>
|
|
<url>https://bigeon.net/projects/gclc.html</url>
|
|
<inceptionYear>2014</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>
|
|
<developerConnection>scm:git:gogs@git.code.bigeon.net:emmanuel/gclc.git</developerConnection>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.scm.id>git.code.bigeon.net</project.scm.id>
|
|
<copyright.email>emmanuel@bigeon.fr</copyright.email>
|
|
<license.licenseName>cecill_2.1</license.licenseName>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.11</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
<configuration>
|
|
<extraExtensions>
|
|
<gclc>properties</gclc>
|
|
<txt>properties</txt>
|
|
</extraExtensions>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.github.sevntu-checkstyle</groupId>
|
|
<artifactId>dsm-maven-plugin</artifactId>
|
|
<version>2.2.0</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>jdepend-maven-plugin</artifactId>
|
|
<version>2.0</version>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
</project>
|