forked from CESNET/metacentrum-accounting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
49 lines (44 loc) · 2.09 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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cz.metacentrum</groupId>
<artifactId>accounting-parent</artifactId>
<packaging>pom</packaging>
<!--
Use "mvn versions:set -DnewVersion=3.17-SNAPSHOT; mvn versions:commit" to change version in all modules
-->
<version>3.17-SNAPSHOT</version>
<name>MetaCentrum Accounting Parent Project</name>
<properties>
<java.version>8</java.version>
<taglibs-standard.version>1.2.5</taglibs-standard.version>
<commons-text.version>1.8</commons-text.version>
<tomcat.version>8.5.38</tomcat.version>
</properties>
<!-- defines compatible versions of many libraries -->
<!-- see https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-build-systems.html#using-boot-maven-parent-pom -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.5.RELEASE</version>
<relativePath/>
</parent>
<!-- specifies versions not defined by the Spring platform-bom -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>${commons-text.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>cloud</module><!-- API for MetaCentrum cloud state -->
<module>perun_machines</module><!-- API for reading JSON data about physical machines from Perun -->
<module>pbsmon</module><!-- PBSMon - web app showing the state of MetaCentrum -->
<module>metaacct</module><!-- Accounting server for MetaCentrum -->
<module>metaacct_cmd</module><!-- Command Line Tools for MetaCentrum Accounting -->
</modules>
</project>