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
148 lines (140 loc) · 7.8 KB
/
Copy pathpom.xml
File metadata and controls
148 lines (140 loc) · 7.8 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?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-jackson2</artifactId>
<groupId>top.infra.cloud-ready.jackson</groupId>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<parent>
<artifactId>cloud-ready-parent</artifactId>
<groupId>top.infra.cloud-ready</groupId>
<version>3.0.5-SNAPSHOT</version>
</parent>
<version>0.0.1-SNAPSHOT</version>
<!-- @formatter:off -->
<dependencies>
<dependency><groupId>com.fasterxml.jackson.core</groupId><artifactId>jackson-databind</artifactId></dependency>
<dependency><groupId>com.fasterxml.jackson.datatype</groupId><artifactId>jackson-datatype-guava</artifactId></dependency>
<dependency><groupId>com.google.guava</groupId><artifactId>guava</artifactId></dependency>
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-autoconfigure</artifactId></dependency>
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-configuration-processor</artifactId><optional>true</optional></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>
<dependency><groupId>top.infra.cloud-ready.jackson</groupId><artifactId>spring-boot-jackson2-all</artifactId><version>${project.version}</version></dependency>
<dependency><groupId>top.infra.cloud-ready.jackson</groupId><artifactId>spring-boot-jackson2-apache-commons</artifactId><version>${project.version}</version></dependency>
<dependency><groupId>top.infra.cloud-ready.jackson</groupId><artifactId>spring-boot-jackson2-core</artifactId><version>${project.version}</version></dependency>
<dependency><groupId>top.infra.cloud-ready.jackson</groupId><artifactId>spring-boot-jackson2-hal</artifactId><version>${project.version}</version></dependency>
<dependency><groupId>top.infra.cloud-ready.jackson</groupId><artifactId>spring-boot-jackson2-jaxb</artifactId><version>${project.version}</version></dependency>
<dependency><groupId>top.infra.cloud-ready.jackson</groupId><artifactId>spring-boot-jackson2-joda</artifactId><version>${project.version}</version></dependency>
<dependency><groupId>top.infra.cloud-ready.jackson</groupId><artifactId>spring-boot-jackson2-tests</artifactId><version>${project.version}</version></dependency>
</dependencies>
<!-- @formatter:on -->
</dependencyManagement>
<modules>
<module>spring-boot-jackson2-all</module>
<module>spring-boot-jackson2-apache-commons</module>
<module>spring-boot-jackson2-core</module>
<module>spring-boot-jackson2-hal</module>
<module>spring-boot-jackson2-jaxb</module>
<module>spring-boot-jackson2-joda</module>
<module>spring-boot-jackson2-tests</module>
</modules>
<profiles>
<!-- @formatter:off -->
<profile>
<id>spring-boot-jackson2-report-aggregate</id>
<activation><property><name>site</name><value>true</value></property></activation>
<modules>
<module>spring-boot-jackson2-all</module>
<module>spring-boot-jackson2-apache-commons</module>
<module>spring-boot-jackson2-core</module>
<module>spring-boot-jackson2-hal</module>
<module>spring-boot-jackson2-jaxb</module>
<module>spring-boot-jackson2-joda</module>
<module>spring-boot-jackson2-report-aggregate</module>
<module>spring-boot-jackson2-tests</module>
</modules>
<reporting>
<plugins>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<reportSets>
<reportSet>
<id>aggregate</id>
<inherited>false</inherited>
<reports><report>checkstyle-aggregate</report></reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<reportSets>
<reportSet>
<id>aggregate</id>
<inherited>false</inherited>
<reports><report>aggregate</report></reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<configuration><aggregate>true</aggregate></configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-report-plugin</artifactId>
<reportSets>
<reportSet>
<id>unit-tests</id>
<configuration>
<aggregate>true</aggregate>
</configuration>
<inherited>false</inherited>
<reports><report>report-only</report></reports>
</reportSet>
<reportSet>
<id>integration-tests</id>
<configuration>
<aggregate>true</aggregate>
</configuration>
<inherited>false</inherited>
<reports><report>failsafe-report-only</report></reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
</plugins>
</reporting>
</profile>
<!-- @formatter:on -->
</profiles>
<properties>
<java.version>8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<!-- @formatter:off -->
<repositories>
<!-- Make artifacts in OSSRH repositories available -->
<repository>
<id>ossrh-nexus2-releases</id><name>ossrh nexus2 releases</name><url>https://oss.sonatype.org/content/repositories/releases/</url>
<releases><enabled>true</enabled><updatePolicy>never</updatePolicy></releases><snapshots><enabled>false</enabled></snapshots>
</repository>
<repository>
<id>ossrh-nexus2-snapshots</id><name>ossrh nexus2 snapshots</name><url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<releases><enabled>false</enabled></releases><snapshots><enabled>true</enabled><updatePolicy>daily</updatePolicy></snapshots>
</repository>
</repositories>
<!-- @formatter:on -->
</project>