Added license properties

Signed-off-by: Emmanuel Bigeon <emmanuel@bigeon.fr>
This commit is contained in:
Emmanuel Bigeon 2018-10-08 14:57:36 -04:00
parent afb773636f
commit e8cf6eb68f

View File

@ -1,135 +1,103 @@
<!-- GCLC swt, provide a swt window for console applications --> <!-- GCLC swt, provide a swt window for console applications -->
<!-- Copyright (C) 2015-2017 E. Bigeon --> <!-- Copyright (C) 2015-2017 E. Bigeon -->
<!-- mailto:emmanuel@bigeon.fr --> <!-- mailto:emmanuel@bigeon.fr -->
<!-- --> <!-- -->
<!-- This software is governed by the CeCILL license under French law and --> <!-- This software is governed by the CeCILL license under French law and -->
<!-- abiding by the rules of distribution of free software. You can use, --> <!-- abiding by the rules of distribution of free software. You can use, -->
<!-- modify and/or redistribute the software under the terms of the CeCILL --> <!-- modify and/or redistribute the software under the terms of the CeCILL -->
<!-- license as circulated by CEA, CNRS and INRIA at the following URL --> <!-- license as circulated by CEA, CNRS and INRIA at the following URL -->
<!-- "http://www.cecill.info". --> <!-- "http://www.cecill.info". -->
<!-- --> <!-- -->
<!-- As a counterpart to the access to the source code and rights to copy, --> <!-- As a counterpart to the access to the source code and rights to copy, -->
<!-- modify and redistribute granted by the license, users are provided only --> <!-- modify and redistribute granted by the license, users are provided only -->
<!-- with a limited warranty and the software's author, the holder of the --> <!-- with a limited warranty and the software's author, the holder of the -->
<!-- economic rights, and the successive licensors have only limited --> <!-- economic rights, and the successive licensors have only limited -->
<!-- liability. --> <!-- liability. -->
<!-- --> <!-- -->
<!-- In this respect, the user's attention is drawn to the risks associated --> <!-- In this respect, the user's attention is drawn to the risks associated -->
<!-- with loading, using, modifying and/or developing or reproducing the --> <!-- with loading, using, modifying and/or developing or reproducing the -->
<!-- software by the user in light of its specific status of free software, --> <!-- software by the user in light of its specific status of free software, -->
<!-- that may mean that it is complicated to manipulate, and that also --> <!-- that may mean that it is complicated to manipulate, and that also -->
<!-- therefore means that it is reserved for developers and experienced --> <!-- therefore means that it is reserved for developers and experienced -->
<!-- professionals having in-depth computer knowledge. Users are therefore --> <!-- professionals having in-depth computer knowledge. Users are therefore -->
<!-- encouraged to load and test the software's suitability as regards their --> <!-- encouraged to load and test the software's suitability as regards their -->
<!-- requirements in conditions enabling the security of their systems and/or --> <!-- requirements in conditions enabling the security of their systems and/or -->
<!-- data to be ensured and, more generally, to use and operate it in the --> <!-- data to be ensured and, more generally, to use and operate it in the -->
<!-- same conditions as regards security. --> <!-- same conditions as regards security. -->
<!-- --> <!-- -->
<!-- The fact that you are presently reading this means that you have had --> <!-- The fact that you are presently reading this means that you have had -->
<!-- knowledge of the CeCILL license and that you accept its terms. --> <!-- knowledge of the CeCILL license and that you accept its terms. -->
<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">
<!-- Copyright E. Bigeon (2015) --> <modelVersion>4.0.0</modelVersion>
<!-- --> <groupId>net.bigeon.gclc</groupId>
<!-- emmanuel@bigeon.fr --> <artifactId>gclc-swt</artifactId>
<!-- --> <version>1.1.6-SNAPSHOT</version>
<!-- This software is a computer program whose purpose is to --> <packaging>jar</packaging>
<!-- provide a swt window for console applications. --> <inceptionYear>2015</inceptionYear>
<!-- --> <name>GCLC swt</name>
<!-- This software is governed by the CeCILL license under French law and --> <description>A swt window for console applications</description>
<!-- abiding by the rules of distribution of free software. You can use, -->
<!-- modify and/or redistribute the software under the terms of the CeCILL --> <parent>
<!-- license as circulated by CEA, CNRS and INRIA at the following URL --> <groupId>net.bigeon.config</groupId>
<!-- "http://www.cecill.info". --> <artifactId>swt-config</artifactId>
<!-- --> <version>1.8.5</version>
<!-- As a counterpart to the access to the source code and rights to copy, --> </parent>
<!-- modify and redistribute granted by the license, users are provided only -->
<!-- with a limited warranty and the software's author, the holder of the --> <properties>
<!-- economic rights, and the successive licensors have only limited --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- liability. --> <copyright.email>emmanuel@bigeon.fr</copyright.email>
<!-- --> <license.licenseName>cecill_2.1</license.licenseName>
<!-- In this respect, the user's attention is drawn to the risks associated --> </properties>
<!-- with loading, using, modifying and/or developing or reproducing the -->
<!-- software by the user in light of its specific status of free software, --> <dependencies>
<!-- that may mean that it is complicated to manipulate, and that also --> <dependency>
<!-- therefore means that it is reserved for developers and experienced --> <groupId>net.bigeon</groupId>
<!-- professionals having in-depth computer knowledge. Users are therefore --> <artifactId>gclc</artifactId>
<!-- encouraged to load and test the software's suitability as regards their --> <version>2.0.7</version>
<!-- requirements in conditions enabling the security of their systems and/or --> </dependency>
<!-- data to be ensured and, more generally, to use and operate it in the --> <dependency>
<!-- same conditions as regards security. --> <groupId>net.bigeon</groupId>
<!-- --> <artifactId>collections</artifactId>
<!-- The fact that you are presently reading this means that you have had --> <version>1.1.1</version>
<!-- knowledge of the CeCILL license and that you accept its terms. --> </dependency>
</dependencies>
<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> <licenses>
<groupId>net.bigeon.gclc</groupId> <license>
<artifactId>gclc-swt</artifactId> <distribution>manual</distribution>
<version>1.1.6-SNAPSHOT</version> <name>CeCILL 2.1</name>
<packaging>jar</packaging> <url>https://cecill.info/licences/Licence_CeCILL_V2.1-en.html</url>
<inceptionYear>2015</inceptionYear> </license>
<name>GCLC swt</name> </licenses>
<description>A swt window for console applications</description> <reporting>
<plugins>
<parent> <plugin>
<groupId>net.bigeon.config</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>swt-config</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<version>1.8.5</version> <version>2.10.3</version>
</parent> </plugin>
<plugin>
<properties> <groupId>com.github.sevntu-checkstyle</groupId>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <artifactId>dsm-maven-plugin</artifactId>
</properties> <version>2.2.0</version>
</plugin>
<dependencies> </plugins>
<dependency> </reporting>
<groupId>net.bigeon</groupId> <developers>
<artifactId>gclc</artifactId> <developer>
<version>2.0.7</version> <email>emmanuel@bigeon.fr</email>
</dependency> <name>Emmanuel Bigeon</name>
<dependency> <url>bigeon.net</url>
<groupId>net.bigeon</groupId> <roles>
<artifactId>collections</artifactId> <role>PM</role>
<version>1.1.1</version> </roles>
</dependency> </developer>
</dependencies> </developers>
<licenses> <scm>
<license> <developerConnection>scm:git:gogs@git.code.bigeon.net:emmanuel/gclc.git</developerConnection>
<distribution>manual</distribution> <tag>HEAD</tag>
<name>CeCILL 2.1</name> </scm>
<url>https://cecill.info/licences/Licence_CeCILL_V2.1-en.html</url> </project>
</license>
</licenses>
<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>
<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>
</project>