util
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.graphstream</groupId>
<artifactId>util</artifactId>
<version>1.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!-- This file is part of GraphStream <http://graphstream-project.org>. GraphStream
is a library whose purpose is to handle static or dynamic graph, create them
from scratch, file or any source and display them. This program is free software
distributed under the terms of two licenses, the CeCILL-C license that fits
European law, and the GNU Lesser General Public License. You can use, modify
and/ or redistribute the software under the terms of the CeCILL-C license
as circulated by CEA, CNRS and INRIA at the following URL <http://www.cecill.info>
or under the terms of the GNU LGPL as published by the Free Software Foundation,
either version 3 of the License, or (at your option) any later version. This
program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
details. You should have received a copy of the GNU Lesser General Public
License along with this program. If not, see <http://www.gnu.org/licenses/>.
The fact that you are presently reading this means that you have had knowledge
of the CeCILL-C and LGPL licenses and that you accept their 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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.graphstream</groupId>
<artifactId>util</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>util</name>
<description>Utils used by GraphStream.</description>
<url>http://graphstream-project.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- The GraphStream Team.
Members are sorted in alphabetically. -->
<developers>
<developer>
<id>jbaudry</id>
<name>Julien Baudry</name>
<email>julien.baudry@graphstream-project.org</email>
<organization>LITIS</organization>
<organizationUrl>http://www.litislab.eu</organizationUrl>
</developer>
<developer>
<id>adutot</id>
<name>Antoine Dutot</name>
<email>antoine.dutot@graphstream-project.org</email>
<organization>LITIS</organization>
<organizationUrl>http://www.litislab.eu</organizationUrl>
</developer>
<developer>
<id>ypigne</id>
<name>Yoann Pigné</name>
<email>yoann.pigne@graphstream-project.org</email>
<organization>University of Luxembourg</organization>
<organizationUrl>http://www.uni.lu</organizationUrl>
</developer>
<developer>
<id>gsavin</id>
<name>Guilhelm Savin</name>
<email>guilhelm.savin@graphstream-project.org</email>
<organization>LITIS</organization>
<organizationUrl>http://www.litislab.eu</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/graphstream/gs-deps.git</connection>
<tag>1.0</tag>
<url>https://github.com/graphstream/gs-deps</url>
</scm>
<licenses>
<license>
<name>LGPL3</name>
<url>http://www.gnu.org/copyleft/lesser.html</url>
</license>
<license>
<name>Cecill-C</name>
<url>http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html
</url>
</license>
</licenses>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<configuration>
<keyname><![CDATA[GraphStream Team <team@graphstream-project.org>]]></keyname>
<skip>false</skip>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>package</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>