提交 | 用户 | age
|
826b66
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
C |
2 |
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
4 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
5 |
<modelVersion>4.0.0</modelVersion> |
|
6 |
|
|
7 |
<groupId>com.hx.gitee</groupId> |
|
8 |
<artifactId>hx-auto</artifactId> |
|
9 |
<version>stander</version> |
|
10 |
|
|
11 |
<properties> |
|
12 |
<!--模板--> |
|
13 |
<freemarker.version>2.3.28</freemarker.version> |
|
14 |
<!--mybatis自动生成--> |
|
15 |
<mybatis.actable>1.1.1.RELEASE</mybatis.actable> |
|
16 |
</properties> |
|
17 |
|
|
18 |
<dependencies> |
|
19 |
|
|
20 |
<dependency> |
|
21 |
<groupId>org.freemarker</groupId> |
|
22 |
<artifactId>freemarker</artifactId> |
|
23 |
<version>${freemarker.version}</version> |
|
24 |
</dependency> |
|
25 |
<!-- 数据库自动生成表 --> |
|
26 |
<dependency> |
|
27 |
<groupId>com.gitee.sunchenbin.mybatis.actable</groupId> |
|
28 |
<artifactId>mybatis-enhance-actable</artifactId> |
|
29 |
<version>${mybatis.actable}</version> |
|
30 |
</dependency> |
|
31 |
<dependency> |
|
32 |
<groupId>org.springframework</groupId> |
|
33 |
<artifactId>spring-context</artifactId> |
|
34 |
<version>5.2.5.RELEASE</version> |
|
35 |
<scope>compile</scope> |
|
36 |
</dependency> |
|
37 |
<dependency> |
|
38 |
<groupId>org.slf4j</groupId> |
|
39 |
<artifactId>slf4j-api</artifactId> |
|
40 |
<version>1.7.30</version> |
|
41 |
<scope>compile</scope> |
|
42 |
</dependency> |
|
43 |
<dependency> |
|
44 |
<groupId>org.springframework</groupId> |
|
45 |
<artifactId>spring-beans</artifactId> |
|
46 |
<version>5.2.5.RELEASE</version> |
|
47 |
<scope>compile</scope> |
|
48 |
</dependency> |
|
49 |
|
|
50 |
</dependencies> |
|
51 |
|
|
52 |
|
|
53 |
<build> |
|
54 |
<resources> |
|
55 |
<resource> |
|
56 |
<directory>src/main/java</directory> |
|
57 |
<includes> |
|
58 |
<include>**/*.properties</include> |
|
59 |
<include>**/*.xml</include> |
|
60 |
<include>**/*.tld</include> |
|
61 |
<include>**/*.tpl</include> |
|
62 |
</includes> |
|
63 |
<filtering>false</filtering> |
|
64 |
</resource> |
|
65 |
<resource> |
|
66 |
<directory>src/main/resources</directory> |
|
67 |
<includes> |
|
68 |
<include>**/*.properties</include> |
|
69 |
<include>**/*.xml</include> |
|
70 |
<include>**/*.tld</include> |
|
71 |
<include>**/*.tpl</include> |
|
72 |
</includes> |
|
73 |
</resource> |
|
74 |
<resource> |
|
75 |
<directory>${runtime.env}</directory> |
|
76 |
</resource> |
|
77 |
</resources> |
|
78 |
<plugins> |
|
79 |
<plugin> |
|
80 |
<groupId>org.apache.maven.plugins</groupId> |
|
81 |
<artifactId>maven-compiler-plugin</artifactId> |
|
82 |
<configuration> |
|
83 |
<source>6</source> |
|
84 |
<target>6</target> |
|
85 |
</configuration> |
|
86 |
</plugin> |
|
87 |
</plugins> |
|
88 |
</build> |
|
89 |
|
|
90 |
</project> |