forked from Baeldung/rest-with-spring-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
44 lines (37 loc) · 1.24 KB
/
Copy pathpom.xml
File metadata and controls
44 lines (37 loc) · 1.24 KB
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
<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>
<description>REST with Spring Classes Module2</description>
<name>user-management-parent</name>
<groupId>com.baeldung</groupId>
<artifactId>user-management-parent-m2</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Eugen Paraschiv</name>
<url>https://github.com/eugenp</url>
<id>eugenp</id>
</developer>
</developers>
<ciManagement>
<system>Jenkins</system>
<url>https://rest-security.ci.cloudbees.com/</url>
</ciManagement>
<modules>
<module>m2-lesson1</module>
<module>m2-lesson2</module>
<module>m2-lesson5</module>
<module>m2-lesson1-start</module>
<module>m2-lesson2-start</module>
<module>m2-lesson5-start</module>
<module>m2-lesson6-start</module>
</modules>
</project>