inleft
2022-08-02 70097d968795fcc872095c42f7b7bba618baaaf9
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</artifactId>
10         <version>1.6.0</version>
11         <relativePath>../pom.xml</relativePath>
12     </parent>
13
14     <artifactId>snowy-main</artifactId>
15
16     <packaging>jar</packaging>
17
18     <dependencies>
19
20         <!-- 系统模块 -->
21         <dependency>
22             <groupId>vip.xiaonuo</groupId>
23             <artifactId>snowy-system</artifactId>
24             <version>1.6.0</version>
25         </dependency>
26
27         <!-- 代码生成模块 -->
28         <dependency>
29             <groupId>vip.xiaonuo</groupId>
30             <artifactId>snowy-gen</artifactId>
31             <version>1.6.0</version>
32         </dependency>
33
34         <dependency>
35             <groupId>org.springframework.boot</groupId>
36             <artifactId>spring-boot-starter-test</artifactId>
37             <scope>test</scope>
38         </dependency>
d73443 39
f639b5 40         <!-- pdf demo放在这里,以后需要可以利用-->
d73443 41         <!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
I 42         <dependency>
43             <groupId>com.itextpdf</groupId>
44             <artifactId>itextpdf</artifactId>
45             <version>5.5.13.2</version>
46         </dependency>
47
f639b5 48         <!-- 模板引擎,用于邮件回复-->
I 49         <dependency>
50             <groupId>org.freemarker</groupId>
51             <artifactId>freemarker</artifactId>
52             <version>2.3.31</version>
53         </dependency>
d73443 54
9bcb19 55     </dependencies>
I 56
57     <build>
a9c4c9 58         <finalName>blog</finalName>
9bcb19 59         <plugins>
I 60             <plugin>
61                 <groupId>org.springframework.boot</groupId>
62                 <artifactId>spring-boot-maven-plugin</artifactId>
63                 <executions>
64                     <execution>
65                         <goals>
66                             <goal>repackage</goal>
67                         </goals>
68                     </execution>
69                 </executions>
70                 <configuration>
71                     <fork>true</fork>
72                 </configuration>
73             </plugin>
74         </plugins>
75     </build>
76
77 </project>