blob: d9b52d00383c0e987fe57d25151f9c3085f5fdfa [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>
刘洪青a46c7c82019-10-11 09:36:10 +08009 <version>0.0.1</version>
刘洪青e071d362019-08-16 09:39:49 +080010 <relativePath>../../</relativePath>
11 </parent>
12
13 <groupId>com.supwisdom.institute</groupId>
14 <artifactId>sw-backend-common-utils</artifactId>
刘洪青a46c7c82019-10-11 09:36:10 +080015 <version>0.0.1</version>
刘洪青e071d362019-08-16 09:39:49 +080016 <packaging>jar</packaging>
17
18 <name>Supwisdom Backend Framework Common Utils</name>
19 <description>Supwisdom Backend Framework Common Utils project</description>
20
21 <dependencies>
22
23 <dependency>
24 <groupId>org.projectlombok</groupId>
25 <artifactId>lombok</artifactId>
26 <scope>provided</scope>
27 </dependency>
28
29 <dependency>
30 <groupId>org.springframework.boot</groupId>
31 <artifactId>spring-boot-starter</artifactId>
32 </dependency>
33
34
35 <dependency>
36 <groupId>org.apache.commons</groupId>
37 <artifactId>commons-lang3</artifactId>
38 </dependency>
39
40 <dependency>
41 <groupId>com.google.guava</groupId>
42 <artifactId>guava</artifactId>
43 </dependency>
44
45 </dependencies>
46
47 <build>
48 <plugins>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-compiler-plugin</artifactId>
52 </plugin>
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-javadoc-plugin</artifactId>
56 </plugin>
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-release-plugin</artifactId>
60 </plugin>
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-surefire-plugin</artifactId>
64 </plugin>
65 </plugins>
66 </build>
67
68</project>