This repository was archived by the owner on Jul 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
80 lines (73 loc) · 4.07 KB
/
pom.xml
File metadata and controls
80 lines (73 loc) · 4.07 KB
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:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>spring-boot-starter-redisson</artifactId>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<parent>
<artifactId>cloud-ready-parent</artifactId>
<groupId>top.infra.cloud-ready</groupId>
<version>3.0.5-SNAPSHOT</version>
</parent>
<version>3.0.1-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<configuration>
<failOnNoGitDirectory>false</failOnNoGitDirectory>
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
<skip>false</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
</configuration>
</plugin>
</plugins>
</build>
<!-- @formatter:off -->
<dependencies>
<dependency><groupId>io.netty</groupId><artifactId>netty-buffer</artifactId><scope>runtime</scope></dependency>
<dependency><groupId>io.netty</groupId><artifactId>netty-codec</artifactId><scope>runtime</scope></dependency>
<dependency><groupId>io.netty</groupId><artifactId>netty-common</artifactId><scope>runtime</scope></dependency>
<dependency><groupId>io.netty</groupId><artifactId>netty-handler</artifactId><scope>runtime</scope></dependency>
<dependency><groupId>io.netty</groupId><artifactId>netty-resolver-dns</artifactId><scope>runtime</scope></dependency>
<dependency><groupId>io.netty</groupId><artifactId>netty-transport</artifactId><scope>runtime</scope></dependency>
<dependency><groupId>io.netty</groupId><artifactId>netty-transport-native-epoll</artifactId><scope>provided</scope></dependency>
<dependency><groupId>io.netty</groupId><artifactId>netty-transport-native-kqueue</artifactId><scope>provided</scope></dependency>
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<exclusions>
<!-- conflicts with org.springframework.cloud:spring-cloud-starter-netflix-ribbon's -->
<exclusion><artifactId>netty-buffer</artifactId><groupId>io.netty</groupId></exclusion>
<exclusion><artifactId>netty-codec</artifactId><groupId>io.netty</groupId></exclusion>
<exclusion><artifactId>netty-common</artifactId><groupId>io.netty</groupId></exclusion>
<exclusion><artifactId>netty-handler</artifactId><groupId>io.netty</groupId></exclusion>
<exclusion><artifactId>netty-resolver-dns</artifactId><groupId>io.netty</groupId></exclusion>
<exclusion><artifactId>netty-transport</artifactId><groupId>io.netty</groupId></exclusion>
</exclusions>
</dependency>
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-redis</artifactId></dependency>
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-undertow</artifactId><scope>test</scope></dependency>
<dependency><groupId>top.infra.cloud-ready</groupId><artifactId>spring-boot-test-support</artifactId><scope>test</scope></dependency>
</dependencies>
<!-- @formatter:on -->
<dependencyManagement>
<!-- @formatter:off -->
<dependencies>
</dependencies>
<!-- @formatter:on -->
</dependencyManagement>
<properties>
<java.version>8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>