刘洪青 | e071d36 | 2019-08-16 09:39:49 +0800 | [diff] [blame] | 1 | <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> |
刘洪青 | ffe2f41 | 2019-10-11 10:25:26 +0800 | [diff] [blame] | 8 | <artifactId>sw-backend-common-parent</artifactId> |
刘洪青 | ff545bc | 2019-10-11 10:08:47 +0800 | [diff] [blame] | 9 | <version>0.0.2-SNAPSHOT</version> |
刘洪青 | e071d36 | 2019-08-16 09:39:49 +0800 | [diff] [blame] | 10 | </parent> |
| 11 | |
| 12 | <groupId>com.supwisdom.institute</groupId> |
| 13 | <artifactId>sw-backend-common-framework</artifactId> |
刘洪青 | ff545bc | 2019-10-11 10:08:47 +0800 | [diff] [blame] | 14 | <version>0.0.2-SNAPSHOT</version> |
刘洪青 | e071d36 | 2019-08-16 09:39:49 +0800 | [diff] [blame] | 15 | <packaging>jar</packaging> |
| 16 | |
| 17 | <name>Supwisdom Backend Framework Common Framework</name> |
| 18 | <description>Supwisdom Backend Framework Common Framework project</description> |
| 19 | |
| 20 | <dependencies> |
| 21 | |
| 22 | <dependency> |
| 23 | <groupId>org.projectlombok</groupId> |
| 24 | <artifactId>lombok</artifactId> |
| 25 | <scope>provided</scope> |
| 26 | </dependency> |
| 27 | |
| 28 | <dependency> |
| 29 | <groupId>com.supwisdom.institute</groupId> |
| 30 | <artifactId>sw-backend-common-core</artifactId> |
| 31 | </dependency> |
| 32 | <dependency> |
| 33 | <groupId>com.supwisdom.institute</groupId> |
| 34 | <artifactId>sw-backend-common-utils</artifactId> |
| 35 | </dependency> |
| 36 | |
| 37 | |
| 38 | <dependency> |
| 39 | <groupId>org.apache.commons</groupId> |
| 40 | <artifactId>commons-lang3</artifactId> |
| 41 | </dependency> |
| 42 | |
| 43 | |
| 44 | <dependency> |
| 45 | <groupId>org.springframework.boot</groupId> |
刘洪青 | 859b997 | 2019-08-20 15:43:48 +0800 | [diff] [blame] | 46 | <artifactId>spring-boot-starter-web</artifactId> |
| 47 | <optional>true</optional> |
| 48 | </dependency> |
刘洪青 | 268e420 | 2019-10-10 22:01:33 +0800 | [diff] [blame] | 49 | |
| 50 | <dependency> |
| 51 | <groupId>org.springframework.boot</groupId> |
| 52 | <artifactId>spring-boot-starter-aop</artifactId> |
| 53 | <optional>true</optional> |
| 54 | </dependency> |
| 55 | |
刘洪青 | 859b997 | 2019-08-20 15:43:48 +0800 | [diff] [blame] | 56 | <dependency> |
| 57 | <groupId>org.springframework.boot</groupId> |
刘洪青 | e071d36 | 2019-08-16 09:39:49 +0800 | [diff] [blame] | 58 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 59 | <optional>true</optional> |
| 60 | </dependency> |
刘洪青 | 268e420 | 2019-10-10 22:01:33 +0800 | [diff] [blame] | 61 | |
| 62 | |
| 63 | <!-- <dependency> |
| 64 | <groupId>org.springframework.boot</groupId> |
| 65 | <artifactId>spring-boot-starter-data-redis</artifactId> |
| 66 | <optional>true</optional> |
| 67 | </dependency> --> |
| 68 | <dependency> |
| 69 | <groupId>org.springframework.data</groupId> |
| 70 | <artifactId>spring-data-redis</artifactId> |
| 71 | <optional>true</optional> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>redis.clients</groupId> |
| 75 | <artifactId>jedis</artifactId> |
| 76 | <optional>true</optional> |
| 77 | </dependency> |
刘洪青 | e071d36 | 2019-08-16 09:39:49 +0800 | [diff] [blame] | 78 | |
| 79 | |
| 80 | <dependency> |
| 81 | <groupId>io.springfox</groupId> |
| 82 | <artifactId>springfox-swagger2</artifactId> |
| 83 | </dependency> |
| 84 | |
| 85 | </dependencies> |
| 86 | |
| 87 | <build> |
| 88 | <plugins> |
| 89 | <plugin> |
| 90 | <groupId>org.apache.maven.plugins</groupId> |
| 91 | <artifactId>maven-compiler-plugin</artifactId> |
| 92 | </plugin> |
| 93 | <plugin> |
| 94 | <groupId>org.apache.maven.plugins</groupId> |
| 95 | <artifactId>maven-javadoc-plugin</artifactId> |
| 96 | </plugin> |
| 97 | <plugin> |
| 98 | <groupId>org.apache.maven.plugins</groupId> |
| 99 | <artifactId>maven-release-plugin</artifactId> |
| 100 | </plugin> |
| 101 | <plugin> |
| 102 | <groupId>org.apache.maven.plugins</groupId> |
| 103 | <artifactId>maven-surefire-plugin</artifactId> |
| 104 | </plugin> |
| 105 | </plugins> |
| 106 | </build> |
| 107 | |
| 108 | </project> |