-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
98 lines (80 loc) · 3.01 KB
/
pom.xml
File metadata and controls
98 lines (80 loc) · 3.01 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
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
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>com.jwebmp</groupId>
<artifactId>parent</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<groupId>com.jwebmp.client</groupId>
<artifactId>jwebmp-client</artifactId>
<packaging>jar</packaging>
<version>2.0.0-SNAPSHOT</version>
<name>JWebMP Client</name>
<description>A client library for interacting with JWebMP</description>
<url>https://github.com/GedMarc/JWebMP</url>
<properties>
<project.scm.nameUrl>/JWebMP/Client</project.scm.nameUrl>
<ignore.moditect>true</ignore.moditect>
</properties>
<dependencies>
<dependency>
<groupId>com.guicedee</groupId>
<artifactId>client</artifactId>
</dependency>
<dependency>
<groupId>jakarta.activation</groupId>
<artifactId>jakarta.activation-api</artifactId>
</dependency>
<dependency>
<groupId>com.guicedee.modules.representations</groupId>
<artifactId>json-representation</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>com.guicedee.modules.services</groupId>
<artifactId>uadetector-core</artifactId>
</dependency>
<dependency>
<groupId>com.guicedee.modules.services</groupId>
<artifactId>uadetector-resources</artifactId>
</dependency>
<dependency>
<groupId>io.smallrye.reactive</groupId>
<artifactId>mutiny</artifactId>
</dependency>
<dependency>
<groupId>com.jwebmp.core</groupId>
<artifactId>jwebmp-testlib</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.guicedee</groupId>
<artifactId>standalone-bom</artifactId>
<type>pom</type>
<scope>import</scope>
<version>${guicedee.version}</version>
</dependency>
<dependency>
<groupId>com.guicedee</groupId>
<artifactId>jakarta-bom</artifactId>
<type>pom</type>
<scope>import</scope>
<version>${guicedee.version}</version>
</dependency>
<dependency>
<groupId>com.jwebmp</groupId>
<artifactId>jwebmp-bom</artifactId>
<type>pom</type>
<scope>import</scope>
<version>${guicedee.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>