|
@@ -0,0 +1,145 @@
|
|
1
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+<!--
|
|
3
|
+ ~ The Hefei JingTong RDC(Research and Development Centre) Group.
|
|
4
|
+ ~ __________________
|
|
5
|
+ ~
|
|
6
|
+ ~ Copyright 2015-2021
|
|
7
|
+ ~ All Rights Reserved.
|
|
8
|
+ ~
|
|
9
|
+ ~ NOTICE: All information contained herein is, and remains
|
|
10
|
+ ~ the property of JingTong Company and its suppliers,
|
|
11
|
+ ~ if any.
|
|
12
|
+ -->
|
|
13
|
+
|
|
14
|
+<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
15
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
16
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
17
|
+ <modelVersion>4.0.0</modelVersion>
|
|
18
|
+ <groupId>com.jingtong</groupId>
|
|
19
|
+ <artifactId>logbook</artifactId>
|
|
20
|
+ <version>1.0-SNAPSHOT</version>
|
|
21
|
+
|
|
22
|
+ <properties>
|
|
23
|
+ <maven.compiler.source>8</maven.compiler.source>
|
|
24
|
+ <maven.compiler.target>8</maven.compiler.target>
|
|
25
|
+ <mapstruct.version>1.4.2.Final</mapstruct.version>
|
|
26
|
+ </properties>
|
|
27
|
+ <dependencies>
|
|
28
|
+ <dependency>
|
|
29
|
+ <groupId>org.mapstruct</groupId>
|
|
30
|
+ <artifactId>mapstruct</artifactId>
|
|
31
|
+ <version>${mapstruct.version}</version>
|
|
32
|
+ </dependency>
|
|
33
|
+ <dependency>
|
|
34
|
+ <groupId>org.projectlombok</groupId>
|
|
35
|
+ <artifactId>lombok</artifactId>
|
|
36
|
+ <version>RELEASE</version>
|
|
37
|
+ <scope>compile</scope>
|
|
38
|
+ </dependency>
|
|
39
|
+ <dependency>
|
|
40
|
+ <groupId>com.google.guava</groupId>
|
|
41
|
+ <artifactId>guava</artifactId>
|
|
42
|
+ <version>31.0.1-jre</version>
|
|
43
|
+ </dependency>
|
|
44
|
+ <dependency>
|
|
45
|
+ <groupId>org.aspectj</groupId>
|
|
46
|
+ <artifactId>aspectjweaver</artifactId>
|
|
47
|
+ <version>1.9.8.RC1</version>
|
|
48
|
+ </dependency>
|
|
49
|
+ <dependency>
|
|
50
|
+ <groupId>org.javassist</groupId>
|
|
51
|
+ <artifactId>javassist</artifactId>
|
|
52
|
+ <version>3.25.0-GA</version>
|
|
53
|
+ </dependency>
|
|
54
|
+ <dependency>
|
|
55
|
+ <groupId>cn.hutool</groupId>
|
|
56
|
+ <artifactId>hutool-core</artifactId>
|
|
57
|
+ <version>5.5.4</version>
|
|
58
|
+ </dependency>
|
|
59
|
+ <dependency>
|
|
60
|
+ <groupId>org.freemarker</groupId>
|
|
61
|
+ <artifactId>freemarker</artifactId>
|
|
62
|
+ <version>2.3.31</version>
|
|
63
|
+ <scope>compile</scope>
|
|
64
|
+ </dependency>
|
|
65
|
+ <dependency>
|
|
66
|
+ <groupId>eu.bitwalker</groupId>
|
|
67
|
+ <artifactId>UserAgentUtils</artifactId>
|
|
68
|
+ <version>1.21</version>
|
|
69
|
+ </dependency>
|
|
70
|
+ <dependency>
|
|
71
|
+ <groupId>org.springframework.boot</groupId>
|
|
72
|
+ <artifactId>spring-boot</artifactId>
|
|
73
|
+ <version>2.5.5</version>
|
|
74
|
+ <scope>compile</scope>
|
|
75
|
+ </dependency>
|
|
76
|
+ <dependency>
|
|
77
|
+ <groupId>org.springframework.boot</groupId>
|
|
78
|
+ <artifactId>spring-boot-starter</artifactId>
|
|
79
|
+ <version>2.5.5</version>
|
|
80
|
+ <scope>compile</scope>
|
|
81
|
+ </dependency>
|
|
82
|
+ <dependency>
|
|
83
|
+ <groupId>org.springframework</groupId>
|
|
84
|
+ <artifactId>spring-context</artifactId>
|
|
85
|
+ <version>5.2.17.RELEASE</version>
|
|
86
|
+ <scope>compile</scope>
|
|
87
|
+ </dependency>
|
|
88
|
+ <dependency>
|
|
89
|
+ <groupId>javax.servlet</groupId>
|
|
90
|
+ <artifactId>javax.servlet-api</artifactId>
|
|
91
|
+ <version>4.0.1</version>
|
|
92
|
+ <scope>compile</scope>
|
|
93
|
+ </dependency>
|
|
94
|
+ <dependency>
|
|
95
|
+ <groupId>org.springframework</groupId>
|
|
96
|
+ <artifactId>spring-web</artifactId>
|
|
97
|
+ <version>5.3.10</version>
|
|
98
|
+ <scope>compile</scope>
|
|
99
|
+ </dependency>
|
|
100
|
+ </dependencies>
|
|
101
|
+ <build>
|
|
102
|
+ <plugins>
|
|
103
|
+ <plugin>
|
|
104
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
105
|
+ <artifactId>maven-source-plugin</artifactId>
|
|
106
|
+ <version>2.4</version>
|
|
107
|
+ <executions>
|
|
108
|
+ <execution>
|
|
109
|
+ <id>attach-sources</id>
|
|
110
|
+ <phase>verify</phase><!-- 要绑定到的生命周期的阶段 在verify之后,install之前执行下面指定的goal -->
|
|
111
|
+ <goals>
|
|
112
|
+ <goal>jar-no-fork</goal><!-- 类似执行mvn source:jar -->
|
|
113
|
+ </goals>
|
|
114
|
+ </execution>
|
|
115
|
+ </executions>
|
|
116
|
+ </plugin>
|
|
117
|
+ <plugin>
|
|
118
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
119
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
120
|
+ <version>3.8.1</version>
|
|
121
|
+ <configuration>
|
|
122
|
+ <source>1.8</source>
|
|
123
|
+ <target>1.8</target>
|
|
124
|
+ <annotationProcessorPaths>
|
|
125
|
+ <path>
|
|
126
|
+ <groupId>org.mapstruct</groupId>
|
|
127
|
+ <artifactId>mapstruct-processor</artifactId>
|
|
128
|
+ <version>${mapstruct.version}</version>
|
|
129
|
+ </path>
|
|
130
|
+ <path>
|
|
131
|
+ <groupId>org.projectlombok</groupId>
|
|
132
|
+ <artifactId>lombok</artifactId>
|
|
133
|
+ <version>1.18.16</version>
|
|
134
|
+ </path>
|
|
135
|
+ <path>
|
|
136
|
+ <groupId>org.projectlombok</groupId>
|
|
137
|
+ <artifactId>lombok-mapstruct-binding</artifactId>
|
|
138
|
+ <version>0.2.0</version>
|
|
139
|
+ </path>
|
|
140
|
+ </annotationProcessorPaths>
|
|
141
|
+ </configuration>
|
|
142
|
+ </plugin>
|
|
143
|
+ </plugins>
|
|
144
|
+ </build>
|
|
145
|
+</project>
|