-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
101 lines (93 loc) · 2.93 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?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>uk.dansiviter.microservices</groupId>
<artifactId>parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Microservice Frameworks</name>
<url>https://gitlab.com/dansiviter/spring-boot-vs</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>manual</distribution>
</license>
</licenses>
<properties>
<java.version>16</java.version>
<maven.compiler.release>${java.version}</maven.compiler.release>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<dropwizard.version>2.0.21</dropwizard.version>
<helidon.version>2.3.0</helidon.version>
<micronaut.version>2.5.4</micronaut.version>
<quarkus.version>1.13.4.Final</quarkus.version>
<spring-boot.version>2.5.0</spring-boot.version>
<vertx.version>4.0.3</vertx.version>
</properties>
<modules>
<module>core</module>
<module>benchmark</module>
<module>dropwizard</module>
<module>helidon-se</module>
<module>helidon-mp</module>
<module>micronaut</module>
<module>quarkus</module>
<module>spring-boot-webflux</module>
<module>spring-boot-webmvc</module>
<module>vertx</module>
</modules>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>[5.7.1,5.8)</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>[2.2,3.0)</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>[4.3,4.4)</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>6.0.3</version>
</plugin>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<containerizingMode>packaged</containerizingMode>
<from>
<image>adoptopenjdk/openjdk16:alpine</image>
</from>
<to>
<image>${project.artifactId}</image>
<tags>
<tag>${project.version}</tag>
</tags>
</to>
</configuration>
</plugin>
</plugins>
</build>
</project>