-
Notifications
You must be signed in to change notification settings - Fork 564
/
pom.xml
executable file
·125 lines (119 loc) · 4.94 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
120
121
122
123
124
125
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2019 the original author or authors.
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>guru.springframework</groupId>
<artifactId>sfg-blog-posts</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>2.1.7.RELEASE</version>
<scope>compile</scope>
</dependency>
</dependencies>
<packaging>pom</packaging>
<description>Parent Project for SFG</description>
<licenses>
<license>
<name>GNU General Public License v3.0</name>
<url>https://www.gnu.org/licenses/gpl.txt</url>
</license>
</licenses>
<organization>
<name>Spring Framework Guru</name>
</organization>
<developers>
<developer>
<name>John Thompson</name>
<organization>Spring Framework Guru</organization>
</developer>
</developers>
<issueManagement>
<url>https://github.com/sfg-beer-works/sfg-brewery/issues</url>
<system>GitHub</system>
</issueManagement>
<modules>
<module>java-list-operations</module>
<module>basicauthentication</module>
<module>resourceloaderdemo</module>
<module>autowiringdemo</module>
<module>springawareinterfaces</module>
<module>springboot-graphql-app</module>
<module>springdependencyinjection</module>
<module>jdbc-template</module>
<module>maplombok</module>
<module>spring-factory-method</module>
<module>resttemplate</module>
<module>multiple-data-sources</module>
<module>spring-boot-ehcache</module>
<module>bean-definition-inheritance</module>
<module>springbeanlifecycle</module>
<module>spring-profiles</module>
<module>hikaricp-springboot2-mysql</module>
<module>springboot-lombok-part1</module>
<module>springboot-lombok-part2</module>
<module>spring-requestbody-annotation</module>
<module>spring-bean-scopes</module>
<module>docker-layer-svc1</module>
<module>docker-layer-svc2</module>
<module>spring-boot-docker</module>
<module>publish-docker-image-to-docker-hub</module>
<module>spring-boot-docker-compose</module>
<module>custom-queries-with-spring-data-jpa</module>
<module>rabbitmqspringapp</module>
<module>restserviceforproduct</module>
<module>testingspringbootrestfulservice</module>
<module>cachevict</module>
<module>argumentcaptors</module>
<module>api-gateway-pattern</module>
<module>parameterizedqueries</module>
<module>spring-rest-docs</module>
<module>stored-procedure-call</module>
<module>spring-boot-pagination</module>
<module>error-handling-in-spring</module>
<module>spring-state-machine</module>
<module>java-bean-validation</module>
<module>stored-procedure-with-spring-boot</module>
<module>spring-core-concepts</module>
<module>multimodule-spring-boot-project</module>
<module>one-to-one-association</module>
<module>one-to-many-association</module>
<module>spring-actuator-demo</module>
<module>springboot-internationalization</module>
<module>spring-retry</module>
<module>scheduling-demo</module>
<module>springboot-kafka-demo</module>
<module>bootstrapping-data-in-springboot</module>
<module>spring-filter</module>
<module>eureka-service-registry</module>
<module>db-migration-flyway</module>
<module>AuthenticatorService</module>
<module>BlogService</module>
<module>optionaldemo</module>
</modules>
</project>