-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpom.xml
More file actions
45 lines (45 loc) · 1.61 KB
/
pom.xml
File metadata and controls
45 lines (45 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.yworks.yfiles.demos.complete</groupId>
<artifactId>databinding</artifactId>
<version>4.0.0.0</version>
</parent>
<artifactId>graphbuilderxml</artifactId>
<packaging>jar</packaging>
<url>https://www.yfiles.com/the-yfiles-sdk/java/yfiles-for-java</url>
<properties>
<exec.mainClass>databinding.graphbuilder.GraphBuilderDemo</exec.mainClass>
<yfiles.libdir>${project.basedir}/../../../lib</yfiles.libdir>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<classpathScope>provided</classpathScope>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.yworks.yfiles</groupId>
<artifactId>yfiles-for-java-swing</artifactId>
<version>4.0.0.0</version>
<scope>system</scope>
<systemPath>${yfiles.libdir}/yfiles-for-java-swing-complete-4.0.0.0.jar</systemPath>
</dependency>
<dependency>
<groupId>com.yworks.yfiles.demos.complete</groupId>
<artifactId>toolkit</artifactId>
<version>4.0.0.0</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>
</project>