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