inleft
2022-02-21 a9c4c99791e4d43971afd863946a2b0c4db44708
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
I 40         <!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
41         <dependency>
42             <groupId>com.itextpdf</groupId>
43             <artifactId>itextpdf</artifactId>
44             <version>5.5.13.2</version>
45         </dependency>
46
47
48
9bcb19 49     </dependencies>
I 50
51     <build>
a9c4c9 52         <finalName>blog</finalName>
9bcb19 53         <plugins>
I 54             <plugin>
55                 <groupId>org.springframework.boot</groupId>
56                 <artifactId>spring-boot-maven-plugin</artifactId>
57                 <executions>
58                     <execution>
59                         <goals>
60                             <goal>repackage</goal>
61                         </goals>
62                     </execution>
63                 </executions>
64                 <configuration>
65                     <fork>true</fork>
66                 </configuration>
67             </plugin>
68         </plugins>
69     </build>
70
71 </project>