Skip to content
This repository was archived by the owner on Aug 30, 2025. It is now read-only.

Commit aa0081a

Browse files
committed
Add option to demo directly with Gephi modules
1 parent e994395 commit aa0081a

File tree

13 files changed

+2992923
-0
lines changed

13 files changed

+2992923
-0
lines changed

modules/demo-gephi/pom.xml

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<artifactId>viz-engine-gephi-demo</artifactId>
5+
6+
<parent>
7+
<groupId>org.gephi</groupId>
8+
<artifactId>viz-engine-parent</artifactId>
9+
<version>1.0.0-SNAPSHOT</version>
10+
<relativePath>../..</relativePath>
11+
</parent>
12+
13+
<name>Viz Engine Demo (Gephi)</name>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>org.gephi</groupId>
18+
<artifactId>visualization-engine</artifactId>
19+
<version>0.11.0-SNAPSHOT</version>
20+
</dependency>
21+
22+
<dependency>
23+
<groupId>org.gephi</groupId>
24+
<artifactId>graph-api</artifactId>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.gephi</groupId>
28+
<artifactId>io-importer-api</artifactId>
29+
</dependency>
30+
<dependency>
31+
<groupId>org.gephi</groupId>
32+
<artifactId>io-importer-api</artifactId>
33+
<type>test-jar</type>
34+
</dependency>
35+
<dependency>
36+
<groupId>org.gephi</groupId>
37+
<artifactId>io-importer-plugin</artifactId>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.gephi</groupId>
41+
<artifactId>layout-api</artifactId>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.gephi</groupId>
45+
<artifactId>layout-plugin</artifactId>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.netbeans.api</groupId>
49+
<artifactId>org-openide-filesystems</artifactId>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.netbeans.modules</groupId>
53+
<artifactId>org-netbeans-modules-masterfs</artifactId>
54+
</dependency>
55+
</dependencies>
56+
57+
<build>
58+
<plugins>
59+
<plugin>
60+
<groupId>org.apache.maven.plugins</groupId>
61+
<artifactId>maven-jar-plugin</artifactId>
62+
<configuration>
63+
<archive>
64+
<manifest>
65+
<addClasspath>true</addClasspath>
66+
<classpathPrefix>lib/</classpathPrefix>
67+
<useUniqueVersions>false</useUniqueVersions>
68+
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
69+
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
70+
<mainClass>org.gephi.viz.engine.demo.Main</mainClass>
71+
</manifest>
72+
</archive>
73+
</configuration>
74+
</plugin>
75+
76+
<plugin>
77+
<groupId>org.apache.maven.plugins</groupId>
78+
<artifactId>maven-dependency-plugin</artifactId>
79+
<executions>
80+
<execution>
81+
<id>copy-dependencies</id>
82+
<phase>package</phase>
83+
<goals>
84+
<goal>copy-dependencies</goal>
85+
</goals>
86+
<configuration>
87+
<outputDirectory>${project.build.directory}/lib</outputDirectory>
88+
<includeScope>runtime</includeScope>
89+
</configuration>
90+
</execution>
91+
</executions>
92+
</plugin>
93+
</plugins>
94+
</build>
95+
</project>

0 commit comments

Comments
 (0)