-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
61 lines (52 loc) · 1.67 KB
/
pom.xml
File metadata and controls
61 lines (52 loc) · 1.67 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
<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>fish.focus.uvms.maven</groupId>
<artifactId>uvms-pom</artifactId>
<version>3.34</version>
</parent>
<groupId>fish.focus.uvms.commons</groupId>
<artifactId>uvms-commons-parent</artifactId>
<packaging>pom</packaging>
<version>4.2.1-SNAPSHOT</version>
<name>uvms-commons-parent</name>
<url>https://github.com/FocusFish/UVMS-UVMSCommonsLibrary</url>
<properties>
<!-- Maven default properties -->
<project.scm.id>github</project.scm.id>
<scm.connection>scm:git:https://github.com/FocusFish/UVMS-UVMSCommonsLibrary.git</scm.connection>
<scm.url>scm:git:https://github.com/FocusFish/UVMS-UVMSCommonsLibrary.git</scm.url>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>fish.focus.uvms.maven</groupId>
<artifactId>uvms-pom-java11-deps</artifactId>
<version>3.34</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<modules>
<module>message</module>
<module>domain</module>
<module>date</module>
<module>rest</module>
<module>dao</module>
<module>notification</module>
<module>geometry</module>
<module>cache</module>
</modules>
<scm>
<connection>${scm.connection}</connection>
<tag>HEAD</tag>
</scm>
</project>