forked from TranDatk/spring-boot-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
153 lines (139 loc) · 5.55 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.5.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<groupId>me.loda.spring</groupId>
<artifactId>spring-boot-learning</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>spring-boot-learning</name>
<description>Everything about Spring Boot</description>
<url>https://loda.me/</url>
<organization>
<name>loda.me</name>
<url>https://loda.me/</url>
</organization>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>loda</id>
<name>Nguyễn Hoàng Nam</name>
<email>[email protected]</email>
<url>https://github.com/loda-kun</url>
<organization>loda</organization>
<organizationUrl>https://loda.me/</organizationUrl>
<roles>
<role>founder</role>
</roles>
<properties>
<facebook>https://www.facebook.com/nam.tehee</facebook>
<linkedin>https://www.linkedin.com/in/loda-nam-hoang/</linkedin>
</properties>
</developer>
</developers>
<modules>
<module>spring-configuration-properties</module>
<module>jpa-hibernate-one-to-one</module>
<module>jpa-hibernate-one-to-many</module>
<module>jpa-hibernate-many-to-many</module>
<module>spring-security-example</module>
<module>spring-security-hibernate</module>
<module>spring-security-hibernate-jwt</module>
<module>spring-redis</module>
<module>basic-dependency-loosely-coupled</module>
<module>spring-boot-1-helloworld-@Component-@Autowired</module>
<module>spring-boot-webflux</module>
<module>spring-cloud-config-server</module>
<module>spring-cloud-config-client</module>
<module>spring-boot-2-helloworld-@Primary - @Qualifier</module>
<module>spring-boot-3-bean-life-cycle-@PostConstruct-@PreDestroy</module>
<module>spring-boot-4-@Component-@Service-@Repository</module>
<module>spring-boot-5-Component-Scan</module>
<module>spring-boot-6-@configuration-@Bean</module>
<module>spring-boot-7-spring-application-properties-@Value</module>
<module>spring-boot-8-@Controller-web-helloworld</module>
<module>spring-boot-@Lazy-Anotation</module>
<module>spring-boot-9-thymeleaf</module>
<module>spring-boot-10-@PostMapping-@RequestBody</module>
<module>spring-boot-10-@PostMapping-@ModelAttribute-thymeleaf</module>
<module>spring-boot-11-JPA-MySQL</module>
<module>spring-boot-12-custom-jpa-@Query</module>
<module>spring-boot-12-jpa-method-and-@Query-@Param</module>
<module>spring-boot-13-spring-boot-thymeleaf-mysql-web</module>
<module>spring-boot-14-restful-api-@RestController-@RequestBody-@PathVariable</module>
<module>spring-boot-15-@ControllerAdvice-@RestControllerAdvice-@ExceptionHandler-@ResponseStatus</module>
<module>spring-boot-16-@ConfigurationProperties</module>
<module>spring-boot-17-spring-profiles</module>
<module>spring-boot-18-testing-in-spring-boot</module>
<module>hibernate-and-hibernate-only</module>
<module>spring-boot-@Conditional</module>
<module>spring-boot-@EventListener-@Async</module>
<module>spring-boot-custom-@Conditional</module>
<module>spring-boot-@Conditional-2-custom-conditional</module>
<module>spring-boot-application-context-events</module>
<module>spring-boot-jpa-auditing</module>
<module>jpa-hibernate-pageable</module>
<module>jpa-hibernate-specifications</module>
<module>jpa-hibernate-criteria</module>
<module>spring-boot-swagger2</module>
<module>spring-boot-swagger3-openapi3</module>
<module>jpa-hibernate-custom-validation</module>
<module>test-mockito-basic</module>
<module>spring-boot-19-testing-in-spring-boot-2</module>
</modules>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!--spring mvc, rest-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--hot swapping, disable cache for template-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
<!--lombok annotation for fast coding-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<!--for test-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>28.0-jre</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>