-
Notifications
You must be signed in to change notification settings - Fork 147
/
pom.xml
119 lines (113 loc) · 4.91 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>my.restful</groupId>
<artifactId>jax-rs2-guideII</artifactId>
<packaging>pom</packaging>
<version>0.0.1-SNAPSHOT</version>
<modules>
<module>1.5.my-first-service</module>
<module>1.5.my-first-webapp</module>
<module>1.6.1.myrest-servlet2-webxml</module>
<module>1.6.2.myrest-servlet3-webxml</module>
<module>1.6.3.myrest-subservlet</module>
<module>1.6.4.myrest-servlet3-application</module>
<module>1.6.6.myrest-servlet2-application</module>
<module>1.6.5.myrest-servlet2-rc</module>
<module>1.6.7.myrest-servlet3-application</module>
<module>2.simple-service-3</module>
<module>2.3.6-1.simple-service-moxy</module>
<module>2.3.6-2.simple-service-jsonp</module>
<module>2.3.6-3.simple-service-jackson</module>
<module>2.3.6-4.simple-service-jettison</module>
<module>3.jaxrs2-handle</module>
<module>4.2.asynchronized</module>
<module>4.4.sse</module>
<module>5.jaxrs2-client</module>
<module>6.rest-test</module>
<module>7.2.demo</module>
<module>7.3.1.boot.zookeeper</module>
<module>7.3.2.boot.consul</module>
<module>7.3.3.boot.etcd</module>
<module>8.2.containerization</module>
<module>8.3.boot.zk.kafka</module>
<module>9.simple-service</module>
<module>10.3.security-rest</module>
<module>10.5.oauth2-rest</module>
</modules>
<properties>
<jersey.version>2.43</jersey.version>
<spring.version>5.3.35</spring.version>
<spring-boot.version>2.7.18</spring-boot.version>
<spring-cloud-consul.version>2.2.8.RELEASE</spring-cloud-consul.version>
<spring-cloud.version>2.2.9.RELEASE</spring-cloud.version>
<spring-cloud-zk.version>2.2.5.RELEASE</spring-cloud-zk.version>
<spring.security.version>5.8.15</spring.security.version>
<spring-security-oauth2.version>2.5.2.RELEASE</spring-security-oauth2.version>
<tomcat.version>8.5.100</tomcat.version>
<jackson.version>2.17.1</jackson.version>
<eclipselink.version>2.7.14</eclipselink.version>
<jquery.version>3.7.1</jquery.version>
<junit.version>4.13.2</junit.version>
<slf4j.version>1.7.36</slf4j.version>
<log4j2.version>2.23.1</log4j2.version>
<guava.version>32.1.3-jre</guava.version>
<mysql-connector.version>8.0.33</mysql-connector.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven-war-plugin.version>2.6</maven-war-plugin.version>
<maven-resources-plugin.version>2.7</maven-resources-plugin.version>
<maven-eclipse-plugin.version>2.9</maven-eclipse-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<JDK.version>1.8</JDK.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<inherited>true</inherited>
<configuration>
<source>${JDK.version}</source>
<target>${JDK.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>com.coveo</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<skip>false</skip>
<skipSortingImports>false</skipSortingImports>
<style>google</style>
</configuration>
<executions>
<execution>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.9</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>