blob: 0f97255fccaf5fcb9b86fe418954feab890927ec [file] [log] [blame]
刘洪青e071d362019-08-16 09:39:49 +08001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
6 <parent>
7 <groupId>com.supwisdom.institute</groupId>
8 <artifactId>sw-backend-parent</artifactId>
刘洪青ff545bc2019-10-11 10:08:47 +08009 <version>0.0.2-SNAPSHOT</version>
刘洪青e071d362019-08-16 09:39:49 +080010 <relativePath>../../</relativePath>
11 </parent>
12
13 <groupId>com.supwisdom.institute</groupId>
刘洪青f3439452019-09-03 11:09:02 +080014 <artifactId>sw-backend-base-domain</artifactId>
刘洪青ff545bc2019-10-11 10:08:47 +080015 <version>0.0.2-SNAPSHOT</version>
刘洪青e071d362019-08-16 09:39:49 +080016 <packaging>jar</packaging>
17
刘洪青f3439452019-09-03 11:09:02 +080018 <name>Supwisdom Backend Framework Base Domain</name>
19 <description>Supwisdom Backend Framework Base Domain project</description>
刘洪青e071d362019-08-16 09:39:49 +080020
21 <dependencies>
22
23 <dependency>
24 <groupId>org.projectlombok</groupId>
25 <artifactId>lombok</artifactId>
26 <scope>provided</scope>
27 </dependency>
28
29
30 <dependency>
刘洪青f6254df2019-08-19 14:40:13 +080031 <groupId>org.springframework.boot</groupId>
32 <artifactId>spring-boot-starter</artifactId>
33 </dependency>
34
35
36 <dependency>
刘洪青e071d362019-08-16 09:39:49 +080037 <groupId>com.supwisdom.institute</groupId>
38 <artifactId>sw-backend-common-core</artifactId>
刘洪青e071d362019-08-16 09:39:49 +080039 </dependency>
40
41 <dependency>
42 <groupId>com.supwisdom.institute</groupId>
43 <artifactId>sw-backend-common-utils</artifactId>
刘洪青e071d362019-08-16 09:39:49 +080044 </dependency>
45
46 <dependency>
47 <groupId>com.supwisdom.institute</groupId>
48 <artifactId>sw-backend-common-framework</artifactId>
刘洪青e071d362019-08-16 09:39:49 +080049 </dependency>
50
51
52 <dependency>
53 <groupId>com.supwisdom.infras</groupId>
54 <artifactId>infras-data-jpa</artifactId>
55 </dependency>
56
57
58 <dependency>
59 <groupId>org.springframework.boot</groupId>
60 <artifactId>spring-boot-starter-test</artifactId>
61 <scope>test</scope>
62 </dependency>
63
64 </dependencies>
65
66 <build>
67 <plugins>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-compiler-plugin</artifactId>
71 </plugin>
72 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-javadoc-plugin</artifactId>
75 </plugin>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-release-plugin</artifactId>
79 </plugin>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-surefire-plugin</artifactId>
83 </plugin>
84 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-failsafe-plugin</artifactId>
87 </plugin>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-jar-plugin</artifactId>
91 </plugin>
92 <plugin>
93 <groupId>org.jacoco</groupId>
94 <artifactId>jacoco-maven-plugin</artifactId>
95 </plugin>
96 </plugins>
97 </build>
98
99</project>