-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
80 lines (74 loc) · 3.32 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
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
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ee.ria.tara-admin</groupId>
<artifactId>tara-admin-parent</artifactId>
<version>1.9.2</version>
<packaging>pom</packaging>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>tara-admin-ui</module>
<module>tara-admin-api</module>
<module>tara-admin-api-schema</module>
<module>tara-admin-import</module>
</modules>
<properties>
<maven.compiler.release>11</maven.compiler.release>
<wiremock.version>2.35.2</wiremock.version> <!-- TODO Upgrade to >=3.0.1 after Spring Boot is upgraded to 3.x which includes jetty >= 11.0.12 -->
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<!-- TODO GSSO-534 Upgrade to Spring Boot 3.x -->
<version>2.7.18</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<!--
Setting target value here is only needed to fix IntelliJ IDEA not detecting target version from
global maven.compiler.release property. Maven compiler works correctly without it.
-->
<target>${maven.compiler.release}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<!-- Allow only single edition (currently latest is jdk18on) of Bouncy Castle libraries.
Other libraries may reference different editions of the same Bouncy Castle library
(bcprov-jdk15on vs bcprov-jdk18on), but duplicate classes on classpath must be
avoided. -->
<bannedDependencies>
<excludes>
<exclude>org.bouncycastle:*</exclude>
</excludes>
<includes>
<include>org.bouncycastle:*-jdk18on</include>
</includes>
</bannedDependencies>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>