-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
39 lines (35 loc) · 1.5 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
<?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>
<groupId>au.gov.qld.pub</groupId>
<artifactId>orders</artifactId>
<version>2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Queensland Government Ordering service</name>
<description>Online order processor</description>
<properties>
<maven.build.timestamp.format>h:mm a, d MMMM yyyy</maven.build.timestamp.format>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jackson.version>2.18.2</jackson.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
<modules>
<module>orders-core</module>
<module>orders-war</module>
</modules>
<dependencyManagement>
<!-- Inherit defaults from Spring Boot -->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.3.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>