Skip to content

Commit

Permalink
Merge pull request #8 from gephi/jogl-back
Browse files Browse the repository at this point in the history
Jogl back
  • Loading branch information
eduramiba committed Jun 10, 2024
2 parents bcc0933 + 705741e commit 8425e5d
Show file tree
Hide file tree
Showing 67 changed files with 2,999,841 additions and 18 deletions.
132 changes: 132 additions & 0 deletions modules/demo-jogl/pom.xml
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>
Loading

0 comments on commit 8425e5d

Please sign in to comment.