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</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>
39     </dependencies>
40
41     <build>
42         <finalName>snowy</finalName>
43         <plugins>
44             <plugin>
45                 <groupId>org.springframework.boot</groupId>
46                 <artifactId>spring-boot-maven-plugin</artifactId>
47                 <executions>
48                     <execution>
49                         <goals>
50                             <goal>repackage</goal>
51                         </goals>
52                     </execution>
53                 </executions>
54                 <configuration>
55                     <fork>true</fork>
56                 </configuration>
57             </plugin>
58         </plugins>
59     </build>
60
61 </project>