Skip to content

Commit

Permalink
Fix header and improve pom.xml
Browse files Browse the repository at this point in the history
 Fix header and improve pom.xml
  • Loading branch information
SPalominos authored Oct 2, 2018
2 parents 60e9755 + 49cd25e commit 54af639
Show file tree
Hide file tree
Showing 76 changed files with 134 additions and 111 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Java Network Analyzer [![Build Status](https://travis-ci.org/orbisgis/java-network-analyzer.png)](https://travis-ci.org/orbisgis/java-network-analyzer)
# Java Network Analyzer ![GitHub](https://img.shields.io/github/license/orbisgis/h2gis.svg)[![Build Status](https://travis-ci.org/orbisgis/java-network-analyzer.png)](https://travis-ci.org/orbisgis/java-network-analyzer)

Java Network Analyzer provides a collection of [graph
theory](http://en.wikipedia.org/wiki/Graph_theory) and [social network
Expand Down
95 changes: 59 additions & 36 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,49 +1,25 @@
<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">
<?xml version="1.0" encoding="UTF-8"?>
<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.orbisgis</groupId>

<!-- The Basics -->
<parent>
<groupId>org.orbisgis</groupId>
<artifactId>orbisgis-nexus</artifactId>
<version>3</version>
</parent>
<artifactId>java-network-analyzer</artifactId>
<version>0.1.7-SNAPSHOT</version>
<packaging>bundle</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>Graph theory and social network analysis algorithms
implemented on JGraphT graphs.</description>
<organization>
<name>Lab-STICC - CNRS UMR 6285</name>
<url>http://www.labsticc.fr/</url>
</organization>
<url>http://www.orbisgis.org</url>
<licenses>
<license>
<name>GNU Lesser General Public License (LGPLV3+)</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.html</url>
</license>
</licenses>
<developers>
<developer>
<name>Erwan Bocher</name>
<organization>Lab-STICC - CNRS UMR 6285</organization>
</developer>
<developer>
<name>Adam Gouge</name>
<organization>IRSTV CNRS-FR-2488 (2012-2014)</organization>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:orbisgis/Java-Network-Analyzer.git</connection>
<developerConnection>scm:git:[email protected]:orbisgis/Java-Network-Analyzer.git</developerConnection>
<url>[email protected]:orbisgis/Java-Network-Analyzer.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<parent>
<groupId>org.orbisgis</groupId>
<artifactId>orbisgis-nexus</artifactId>
<version>3</version>
</parent>

<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -107,4 +83,51 @@
</plugin>
</plugins>
</build>

<!-- More Project Information -->
<name>${project.groupId}:${project.artifactId}</name>
<description>Graph theory and social network analysis algorithms implemented on JGraphT graphs.</description>
<url>http://www.orbisgis.org</url>
<licenses>
<license>
<name>GNU Lesser General Public License (LGPLV3+)</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.html</url>
</license>
</licenses>
<organization>
<name>Lab-STICC - CNRS UMR 6285</name>
<url>http://www.labsticc.fr/</url>
</organization>
<developers>
<developer>
<name>Erwan Bocher</name>
<organization>Lab-STICC - CNRS UMR 6285</organization>
</developer>
<developer>
<name>Adam Gouge</name>
<organization>IRSTV CNRS-FR-2488 (2012-2014)</organization>
</developer>
</developers>

<!-- Environment Settings -->
<issueManagement>
<system>Github</system>
<url>https://github.com/orbisgis/Java-Network-Analyzer/issues</url>
</issueManagement>
<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.com/orbisgis/Java-Network-Analyzer</url>
</ciManagement>
<scm>
<connection>scm:git:[email protected]:orbisgis/Java-Network-Analyzer.git</connection>
<developerConnection>scm:git:[email protected]:orbisgis/Java-Network-Analyzer.git</developerConnection>
<url>[email protected]:orbisgis/Java-Network-Analyzer.git</url>
</scm>
<repositories>
<repository>
<id>orbisgis-nexus</id>
<name>OrbisGIS nexus repository</name>
<url>http://nexus.orbisgis.org/content/repositories/osgi-maven</url>
</repository>
</repositories>
</project>
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/alg/BFS.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/alg/DFS.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/alg/Dijkstra.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/data/VAccess.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/data/VBFS.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/data/VCent.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/data/VCentImpl.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/data/VDFS.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/data/VDijkstra.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/data/VDist.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/data/VId.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/data/VPred.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/data/VPredImpl.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/data/VStrahler.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/data/VUCent.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/data/VWCent.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/model/DirectedG.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/model/Edge.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/model/EdgeCent.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/model/EdgeID.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/model/EdgeSPT.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/javanetworkanalyzer/model/PseudoG.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Java Network Analyzer provides a collection of graph theory and social
* network analysis algorithms implemented on mathematical graphs using the
* <a href="http://www.jgrapht.org/">JGraphT</a> library.
Expand Down
Loading

0 comments on commit 54af639

Please sign in to comment.