-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
76 lines (69 loc) · 2.92 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
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.1</version>
<relativePath/>
</parent>
<groupId>pt.galina</groupId>
<artifactId>spring-in-action-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>spring-in -action-demo</name>
<description>spring-in -action-demo</description>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>Apache License 2.0</comments>
</license>
</licenses>
<properties>
<java.version>17</java.version>
</properties>
<modules>
<module>chap1</module>
<module>chap2</module>
<module>chap3-jdbc</module>
<module>chap3-jpa</module>
<module>chap4-cassandra</module>
<module>chap4-mongodb</module>
<module>chap5-csrf-demo</module>
<module>chap5-in-memory-user</module>
<module>chap5-method-level-security</module>
<module>chap5-oauth2-client</module>
<module>chap6-fine-tuning-config</module>
<module>chap6-logging-config</module>
<module>chap6-profile-config</module>
<module>chap7-restful-controller</module>
<module>chap7-rest-template-demo</module>
<module>chap8-admin-preauthorize-demo</module>
<module>chap8-auth-resource-client</module>
<module>chap8-authorization-server</module>
<module>chap8-resource-server</module>
<module>chap8-client-app</module>
<module>chap9-jms-pull-model</module>
<module>chap9-jms-push-model</module>
<module>chap9-rabbitmq-demo</module>
<module>chap9-kafka-demo</module>
<module>chap_10_integrating</module>
<module>chap_11_reactor_demo</module>
<module>chap_12_spring_webflux_demo</module>
<module>chap_13_reactive-data-persistence</module>
<module>chap_14_rsocket_request-response</module>
<module>chap_14_rsocket_request-stream</module>
<module>chap_14_rsocket-fire-and-forget</module>
<module>chap_14_rsocket-channel</module>
<module>chap_14_rsocket-over-websocket</module>
<module>chap_15_actuator-demo</module>
<module>chap_16_admin-system</module>
<module>chap_17_jmx-monitoring</module>
<module>chap_18_docker-container-demo</module>
<module>chap_18_google-cloud</module>
<module>shared-resources</module>
</modules>
</project>