-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
109 lines (100 loc) · 3.08 KB
/
pom.xml
File metadata and controls
109 lines (100 loc) · 3.08 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
99
100
101
102
103
104
105
106
107
108
109
<?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>fish.focus.uvms.maven</groupId>
<artifactId>uvms-pom</artifactId>
<version>3.33</version>
</parent>
<groupId>fish.focus.uvms.usm</groupId>
<version>2.2.16-SNAPSHOT</version>
<artifactId>backend-modules</artifactId>
<packaging>pom</packaging>
<properties>
<cas.client.core>3.6.1</cas.client.core>
<docker.dev.version>4.6.4</docker.dev.version>
<uvms.pom.version>3.33</uvms.pom.version>
<uvms.commons.version>4.2.0</uvms.commons.version>
<sun.jersey.version>1.19.4</sun.jersey.version>
<org.glassfish.jersey.version>2.38</org.glassfish.jersey.version>
<usm4uvms.version>4.2.0</usm4uvms.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>fish.focus.uvms.maven</groupId>
<artifactId>uvms-pom-gis-deps</artifactId>
<version>${uvms.pom.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>fish.focus.uvms.maven</groupId>
<artifactId>uvms-pom-monitoring-deps</artifactId>
<version>${uvms.pom.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>fish.focus.uvms.maven</groupId>
<artifactId>uvms-pom-java11-deps</artifactId>
<version>${uvms.pom.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>fish.focus.uvms.maven</groupId>
<artifactId>uvms-pom-test-deps</artifactId>
<version>${uvms.pom.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>fish.focus.uvms.maven</groupId>
<artifactId>uvms-pom-arquillian-deps</artifactId>
<version>${uvms.pom.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>fish.focus.uvms.docker</groupId>
<artifactId>uvms-docker-wildfly-unionvms</artifactId>
<version>${docker.dev.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<modules>
<module>jwt-handler</module>
<module>authentication</module>
<module>information</module>
<module>administration</module>
</modules>
<scm>
<connection>scm:git:https://github.com/FocusFish/USM.git</connection>
<url>https://github.com/FocusFish/USM</url>
<tag>HEAD</tag>
</scm>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>5.1.4.Final</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<deployAtEnd>true</deployAtEnd>
</configuration>
</plugin>
</plugins>
</build>
</project>