-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
63 lines (54 loc) · 1.9 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
<?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>io.huyvu.reboot</groupId>
<artifactId>reboot</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<description>React ft Spring Boot project</description>
<properties>
<sonar.organization>huyvu8051</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
</properties>
<inceptionYear>2021</inceptionYear>
<licenses>
<license>
<name>Apache v2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>manual</distribution>
</license>
</licenses>
<developers>
<developer>
<id>huyvu8051</id>
<email>[email protected]</email>
<roles>
<role>Developer</role>
</roles>
<name>Vu Van Huy</name>
<url>https://github.com/huyvu8051/reboot</url>
<timezone>+7</timezone>
</developer>
</developers>
<modules>
<module>reboot-frontend</module>
<module>reboot-backend</module>
<module>reboot-security</module>
<module>reboot-socket</module>
<module>reboot-static-resource</module>
<module>reboot-message-biz</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.4.0.905</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>