-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from gephi/jogl-back
Jogl back
- Loading branch information
Showing
67 changed files
with
2,999,841 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
<?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> | ||
<artifactId>viz-engine-jogl-demo</artifactId> | ||
|
||
<parent> | ||
<groupId>org.gephi</groupId> | ||
<artifactId>viz-engine-parent</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<relativePath>../..</relativePath> | ||
</parent> | ||
|
||
<name>Viz Engine Demo (JOGL)</name> | ||
|
||
<properties> | ||
<viz-demo.maven-jar-plugin.version>3.3.0</viz-demo.maven-jar-plugin.version> | ||
<viz-demo.maven-dependency-plugin.version>3.6.0</viz-demo.maven-dependency-plugin.version> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.gephi</groupId> | ||
<artifactId>viz-engine-core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.gephi</groupId> | ||
<artifactId>viz-engine-jogl</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.gephi</groupId> | ||
<artifactId>graph-api</artifactId> | ||
<version>${gephi.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.gephi</groupId> | ||
<artifactId>io-importer-api</artifactId> | ||
<version>${gephi.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.gephi</groupId> | ||
<artifactId>io-importer-plugin</artifactId> | ||
<version>${gephi.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.gephi</groupId> | ||
<artifactId>layout-api</artifactId> | ||
<version>${gephi.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.gephi</groupId> | ||
<artifactId>layout-plugin</artifactId> | ||
<version>${gephi.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.netbeans.api</groupId> | ||
<artifactId>org-openide-filesystems</artifactId> | ||
<version>${netbeans.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.netbeans.modules</groupId> | ||
<artifactId>org-netbeans-modules-masterfs</artifactId> | ||
<version>${netbeans.version}</version> | ||
</dependency> | ||
|
||
<!-- Gluegen --> | ||
<dependency> | ||
<groupId>org.jogamp.gluegen</groupId> | ||
<artifactId>gluegen-rt</artifactId> | ||
</dependency> | ||
|
||
<!-- JOGL --> | ||
<dependency> | ||
<groupId>org.jogamp.jogl</groupId> | ||
<artifactId>jogl-all</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>${viz-demo.maven-jar-plugin.version}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-dependency-plugin</artifactId> | ||
<version>${viz-demo.maven-dependency-plugin.version}</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
|
||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<configuration> | ||
<archive> | ||
<manifest> | ||
<addClasspath>true</addClasspath> | ||
<classpathPrefix>lib/</classpathPrefix> | ||
<useUniqueVersions>false</useUniqueVersions> | ||
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> | ||
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> | ||
<mainClass>org.gephi.viz.engine.demo.Main</mainClass> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-dependency-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>copy-dependencies</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>copy-dependencies</goal> | ||
</goals> | ||
<configuration> | ||
<outputDirectory>${project.build.directory}/lib</outputDirectory> | ||
<includeScope>runtime</includeScope> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
Oops, something went wrong.