inleft
2022-02-09 9bcb19959eeb9da9bde2561e7278f6d0a55eb151
commit | author | age
9bcb19 1 <?xml version="1.0" encoding="UTF-8"?>
I 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     <parent>
8         <groupId>vip.xiaonuo</groupId>
9         <artifactId>snowy-base</artifactId>
10         <version>1.6.0</version>
11         <relativePath>../pom.xml</relativePath>
12     </parent>
13
14     <artifactId>snowy-gen</artifactId>
15
16     <packaging>jar</packaging>
17
18     <dependencies>
19
20         <!-- core模块 -->
21         <dependency>
22             <groupId>vip.xiaonuo</groupId>
23             <artifactId>snowy-core</artifactId>
24             <version>1.6.0</version>
25         </dependency>
26
27         <!-- 代码生成引擎 -->
28         <dependency>
29             <groupId>org.apache.velocity</groupId>
30             <artifactId>velocity</artifactId>
31             <version>1.7</version>
32         </dependency>
33
34     </dependencies>
35
36     <build>
37         <finalName>${project.artifactId}</finalName>
38     </build>
39 </project>