-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
123 lines (109 loc) · 4.79 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
<?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>
<artifactId>saigonparking-parent</artifactId>
<groupId>com.bht.saigonparking</groupId>
<packaging>pom</packaging>
<version>${revision}</version>
<name>SAIGON-PARKING</name>
<modules>
<module>proxy</module>
<module>gateway</module>
<module>queue</module>
<module>discovery</module>
<module>api</module>
<module>common</module>
<module>service</module>
<module>emulator</module>
</modules>
<url>https://github.com/huynhthanhbinh/saigonparking</url>
<description>
Saigon Parking Project is aim to help people to find nearby parking-lot by current or target location.
This project is our group's final project at Ho Chi Minh University of Science, focus on Ho Chi Minh City only.
</description>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>bvt</id>
<name>Vu Tuong Bach</name>
<email>[email protected]</email>
</developer>
<developer>
<id>bht</id>
<name>Huynh Thanh Binh</name>
<email>[email protected]</email>
</developer>
<developer>
<id>dpv</id>
<name>Pham Viet Minh Dao</name>
<email>[email protected]</email>
</developer>
<developer>
<id>hvu</id>
<name>Vu Hai</name>
<email>[email protected]</email>
</developer>
<developer>
<id>tdd</id>
<name>Dang Duc Tai</name>
<email>[email protected]</email>
</developer>
</developers>
<properties>
<revision>v2.5.2</revision> <!-- version of project -->
<java.version>1.8</java.version> <!-- version of java (jdk) -->
<project.docker.hub-id>saigonparkingmap</project.docker.hub-id>
<project.release.classifier>saigonparking</project.release.classifier>
<maven.test.skip>true</maven.test.skip>
<maven.compiler.version>3.8.1</maven.compiler.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.plugin.os.version>1.6.2</maven.plugin.os.version>
<maven.plugin.war.version>3.2.3</maven.plugin.war.version>
<maven.plugin.antrun.version>3.0.0</maven.plugin.antrun.version>
<maven.plugin.docker.version>1.2.2</maven.plugin.docker.version>
<maven.plugin.protobuf.version>0.6.1</maven.plugin.protobuf.version>
<maven.plugin.resources.version>3.1.0</maven.plugin.resources.version>
<springboot.version>2.2.5.RELEASE</springboot.version>
<springcloud.version>2.2.3.RELEASE</springcloud.version>
<springframework.version>5.2.4.RELEASE</springframework.version>
<javax.version>4.0.1</javax.version>
<java-jwt.version>0.11.2</java-jwt.version>
<hibernate.version>5.4.20.Final</hibernate.version>
<mssql-jdbc.version>8.4.0.jre8</mssql-jdbc.version>
<grpc.version>1.30.2</grpc.version>
<protobuf.version>3.13.0</protobuf.version>
<grpc-spring-boot-starter.version>3.5.6</grpc-spring-boot-starter.version>
<netty-tcnative-boringssl.version>2.0.30.Final</netty-tcnative-boringssl.version>
<junit.version>4.13</junit.version>
<log4j.version>2.13.3</log4j.version>
<lombok.version>1.18.12</lombok.version>
<mapstruct.version>1.3.1.Final</mapstruct.version>
<aws.version>1.11.829</aws.version>
<zxing.version>3.4.0</zxing.version>
<commons-lang3.version>3.11</commons-lang3.version>
<java-uuid-generator.version>4.0.1</java-uuid-generator.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>${maven.plugin.docker.version}</version>
<configuration>
<skipDockerBuild>true</skipDockerBuild>
</configuration>
</plugin>
</plugins>
</build>
</project>