forked from NationalSecurityAgency/skills-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
75 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
<?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>1.3.0-SNAPSHOT</version>
<modules>
<module>call-stack-profiler</module>
<module>dashboard</module>
<module>client-display</module>
<module>service</module>
</modules>
<properties>
<!--suppress UnresolvedMavenProperty -->
<nexusServer>${nexus.url}</nexusServer>
<main.basedir>${project.basedir}</main.basedir>
<java.version>1.11</java.version>
<!-- can NOT name it groovy.version as spock's dependency picks it up-->
<groovy.version>2.5.13</groovy.version>
<groovy.eclipse.compiler.version>3.6.0-03</groovy.eclipse.compiler.version>
<groovy.eclipse.batch.version>2.5.12-02</groovy.eclipse.batch.version>
<spock.myVersion>1.3-groovy-2.5</spock.myVersion>
<java.version>1.8</java.version>
<flywaydb.version>5.2.1</flywaydb.version>
<commons.lang.version>3.11</commons.lang.version>
<commons.collections.version>3.2.2</commons.collections.version>
<commons.io.version>2.6</commons.io.version>
<frontend-maven-plugin.version>1.7.6</frontend-maven-plugin.version>
<node.version>v12.16.1</node.version>
<httpclient.version>4.5.12</httpclient.version>
<guava.version>28.1-jre</guava.version>
<!-- !!!!!IMPORTANT!!!!!: when changing the springboot.version property, make sure you also change it in the parent definition -->
<springboot.version>2.3.3.RELEASE</springboot.version>
<greenmail.version>1.5.14</greenmail.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>2.3.3.RELEASE</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>