-
Notifications
You must be signed in to change notification settings - Fork 96
/
pom.xml
77 lines (62 loc) · 2.77 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
<?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>skill-tree</groupId>
<artifactId>skills-service-parent</artifactId>
<packaging>pom</packaging>
<version>3.3.0-SNAPSHOT</version>
<modules>
<module>dashboard</module>
<module>service</module>
</modules>
<properties>
<!--suppress UnresolvedMavenProperty -->
<nexusServer>${nexus.url}</nexusServer>
<main.basedir>${project.basedir}</main.basedir>
<java.version>19</java.version>
<spock.myVersion>2.4-M1-groovy-4.0</spock.myVersion>
<flywaydb.version>6.5.5</flywaydb.version>
<commons.lang.version>3.11</commons.lang.version>
<commons.collections.version>4.4</commons.collections.version>
<commons.io.version>2.16.1</commons.io.version>
<frontend-maven-plugin.version>1.10.3</frontend-maven-plugin.version>
<node.version>v14.21.3</node.version>
<guava.version>29.0-jre</guava.version>
<!-- !!!!!IMPORTANT!!!!!: when changing the springboot.version property, make sure you also change it in the spring-boot-starter-parent definition -->
<springboot.version>3.2.11</springboot.version>
<springcloud.version>3.1.1</springcloud.version>
<greenmail.version>2.0.0</greenmail.version>
<wiremock.version>2.27.2</wiremock.version>
<owasp.encoder.version>1.2.3</owasp.encoder.version>
<micrometer-registry.version>1.10.3</micrometer-registry.version>
<db-scheduler.version>11.6</db-scheduler.version>
<caffeine.version>3.1.1</caffeine.version>
<pretty-time.version>5.0.3.Final</pretty-time.version>
<surefire.version>3.5.1</surefire.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<!-- !!!!!IMPORTANT!!!!!: when changing this version make sure to also update springboot.version property -->
<version>3.2.11</version>
<relativePath/>
</parent>
<distributionManagement>
<repository>
<id>nexus-releases</id>
<name>Release Repository</name>
<url>
${nexusServer}/repository/maven-releases/
</url>
</repository>
<snapshotRepository>
<id>nexus-snapshots</id>
<name>Snapshot Repository</name>
<url>
${nexusServer}/repository/maven-snapshots/
</url>
</snapshotRepository>
</distributionManagement>
</project>