-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpom.xml
114 lines (98 loc) · 2.88 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
<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">
<parent>
<groupId>world.convex</groupId>
<artifactId>convex</artifactId>
<version>0.8.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>convex-gui</artifactId>
<name>Convex GUI</name>
<description>Convex desktop GUI and test applications</description>
<url>https://convex.world</url>
<properties>
<zxing.version>3.5.3</zxing.version>
<flatlaf.version>3.5.2</flatlaf.version>
</properties>
<build>
<plugins>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>world.convex</groupId>
<artifactId>convex-peer</artifactId>
<version>${convex.version}</version>
</dependency>
<dependency>
<groupId>world.convex</groupId>
<artifactId>convex-core</artifactId>
<version>${convex.version}</version>
</dependency>
<dependency>
<groupId>world.convex</groupId>
<artifactId>convex-observer</artifactId>
<version>${convex.version}</version>
</dependency>
<dependency>
<groupId>world.convex</groupId>
<artifactId>convex-restapi</artifactId>
<version>${convex.version}</version>
</dependency>
<dependency>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-swing</artifactId>
<version>11.4.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.12.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>${zxing.version}</version>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>javase</artifactId>
<version>${zxing.version}</version>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>${flatlaf.version}</version>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf-intellij-themes</artifactId>
<version>${flatlaf.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<!-- optional becuase not needed by projects depending on this -->
<optional>true</optional>
</dependency>
</dependencies>
</project>