-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathpom.xml
96 lines (87 loc) · 3.46 KB
/
pom.xml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?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>
<parent>
<groupId>guru.nidi</groupId>
<artifactId>graphviz-java-parent</artifactId>
<version>0.18.2-SNAPSHOT</version>
</parent>
<artifactId>graphviz-java-min-deps</artifactId>
<name>${project.artifactId}</name>
<properties>
<module.name>guru.nidi.graphviz.mindeps</module.name>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>graphviz-java</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>com.eclipsesource.j2v8</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
</exclusion>
<exclusion>
<groupId>org.webjars.npm</groupId>
<artifactId>viz.js-graphviz-java</artifactId>
</exclusion>
<exclusion>
<groupId>guru.nidi.com.kitfox</groupId>
<artifactId>svgSalamander</artifactId>
</exclusion>
<exclusion>
<groupId>net.arnx</groupId>
<artifactId>nashorn-promise</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>guru.nidi.com.eclipsesource.j2v8</groupId>
<artifactId>j2v8_macosx_x86_64</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>guru.nidi.com.eclipsesource.j2v8</groupId>
<artifactId>j2v8_linux_x86_64</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>guru.nidi.com.eclipsesource.j2v8</groupId>
<artifactId>j2v8_win32_x86_64</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>guru.nidi.com.eclipsesource.j2v8</groupId>
<artifactId>j2v8_win32_x86</artifactId>
<optional>true</optional>
</dependency>
<!-- Only needed for Javascript Graphviz Engines -->
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>viz.js-graphviz-java</artifactId>
<optional>true</optional>
</dependency>
<!-- Only needed for SALAMANDER renderer -->
<dependency>
<groupId>guru.nidi.com.kitfox</groupId>
<artifactId>svgSalamander</artifactId>
<optional>true</optional>
</dependency>
<!-- Only needed for Nashorn Javascript Engine -->
<dependency>
<groupId>net.arnx</groupId>
<artifactId>nashorn-promise</artifactId>
<optional>true</optional>
</dependency>
<!-- Only needed for GraphvizCmlLineEngine -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>