forked from spring-framework-guru/sfg-blog-posts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·95 lines (88 loc) · 3.54 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
<?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>example-post</module>
<module>resourceloaderdemo</module>
<module>autowiringdemo</module>
<module>springawareinterfaces</module>
<module>springboot-graphql-app</module>
<module>springdependencyinjection</module>
<module>jdbc-template</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>fabric8-docker-maven</module>
<module>spring-boot-docker-compose</module>
<module>custom-queries-with-spring-data-jpa</module>
</modules>
</project>