-
Notifications
You must be signed in to change notification settings - Fork 654
/
pom.xml
95 lines (88 loc) · 3 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"?>
<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>com.springexamples.demo</groupId>
<artifactId>SpringExamples</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>SpringExamples</name>
<url>https://howtodoinjava.com</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.4</version>
</parent>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.32</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<modules>
<module>minimum-setup</module>
<module>main-class</module>
<module>get-loaded-beans-info</module>
<module>disable-spring-boot-banner</module>
<module>custom-spring-boot-banner</module>
<module>context-path-server-port</module>
<module>embedded-jetty-server</module>
<module>template-freemarker</module>
<module>template-thymeleaf</module>
<module>template-mustache</module>
<module>template-jsp</module>
<module>ssl-https</module>
<module>packaging-war</module>
<module>command-line-runner</module>
<module>server-customization</module>
<module>enable-scheduling</module>
<module>rest-jersey-example</module>
<module>swagger-ui</module>
<module>rest-hateoas</module>
<module>resttemplate</module>
<module>logger-configuration</module>
<module>unit-testing</module>
<module>spring-webflux-demo</module>
<module>rest-crud-hibernate</module>
<module>i18n</module>
<module>oauth2</module>
<!--<module>spring-rmi</module>-->
<module>email</module>
<module>aop</module>
<module>batch-decorator</module>
<module>batch-partitioner</module>
<module>boot-hateoas</module>
<module>spring-reactive</module>
<module>spring-boot-hateoas</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.1</version><!--$NO-MVN-MAN-VER$-->
<!-- <configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration> -->
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>3.2.4</version>
</plugin>
</plugins>
</build>
</project>