-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
pom.xml
142 lines (130 loc) · 5.01 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?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>guru-nidi-parent-pom</artifactId>
<version>1.1.36</version>
<relativePath />
</parent>
<artifactId>graphviz-java-parent</artifactId>
<version>0.18.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>Use graphviz in a pure java environment.</description>
<url>https://github.com/nidi3/graphviz-java</url>
<inceptionYear>2015</inceptionYear>
<properties>
<suppressionFile>owasp-suppression.xml</suppressionFile>
<dependency-check.fail-on-error>false</dependency-check.fail-on-error>
<java.version>1.8</java.version>
<j2v8.version>4.6.0</j2v8.version>
<j2v8-linux.version>4.6.0</j2v8-linux.version>
</properties>
<modules>
<module>graphviz-java</module>
<module>graphviz-java-min-deps</module>
<module>graphviz-java-all-j2v8</module>
<module>graphviz-rough</module>
<module>graphviz-kotlin</module>
</modules>
<scm>
<connection>scm:git:https://github.com/nidi3/graphviz-java</connection>
<developerConnection>scm:git:https://github.com/nidi3/graphviz-java</developerConnection>
<url>https://github.com/nidi3/graphviz-java</url>
<tag>HEAD</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.10.19</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>guru.nidi</groupId>
<artifactId>code-assert</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>guru.nidi.com.eclipsesource.j2v8</groupId>
<artifactId>j2v8_macosx_x86_64</artifactId>
<version>${j2v8.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>guru.nidi.com.eclipsesource.j2v8</groupId>
<artifactId>j2v8_linux_x86_64</artifactId>
<version>${j2v8-linux.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>guru.nidi.com.eclipsesource.j2v8</groupId>
<artifactId>j2v8_win32_x86_64</artifactId>
<version>${j2v8.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>guru.nidi.com.eclipsesource.j2v8</groupId>
<artifactId>j2v8_win32_x86</artifactId>
<version>${j2v8.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>viz.js-graphviz-java</artifactId>
<version>2.1.3</version>
</dependency>
<dependency>
<groupId>guru.nidi.com.kitfox</groupId>
<artifactId>svgSalamander</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>net.arnx</groupId>
<artifactId>nashorn-promise</artifactId>
<version>0.1.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>guru.nidi.maven.plugins</groupId>
<artifactId>snippets-maven-plugin</artifactId>
<version>1.0.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>