刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <parent> |
| 6 | <groupId>com.supwisdom.leaveschool</groupId> |
| 7 | <artifactId>samples-parent</artifactId> |
| 8 | <version>0.0.1-SNAPSHOT</version> |
| 9 | </parent> |
| 10 | |
| 11 | <groupId>com.supwisdom.leaveschool</groupId> |
| 12 | <artifactId>sample-user</artifactId> |
| 13 | <packaging>jar</packaging> |
| 14 | |
| 15 | <dependencies> |
| 16 | |
| 17 | <dependency> |
刘洪青 | d58bc05 | 2018-08-06 22:04:56 +0800 | [diff] [blame] | 18 | <groupId>com.supwisdom.leaveschool</groupId> |
| 19 | <artifactId>sample-common</artifactId> |
| 20 | </dependency> |
| 21 | |
| 22 | <dependency> |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 23 | <groupId>org.springframework.boot</groupId> |
| 24 | <artifactId>spring-boot-starter</artifactId> |
| 25 | </dependency> |
| 26 | |
| 27 | <!-- 微服务 健康监控 --> |
| 28 | <!-- <dependency> |
| 29 | <groupId>org.springframework.boot</groupId> |
| 30 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 31 | </dependency> --> |
| 32 | |
| 33 | <dependency> |
| 34 | <groupId>org.springframework.boot</groupId> |
| 35 | <artifactId>spring-boot-starter-web</artifactId> |
| 36 | </dependency> |
刘洪青 | d49e494 | 2018-08-03 16:08:44 +0800 | [diff] [blame] | 37 | |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 38 | |
| 39 | <dependency> |
| 40 | <groupId>com.supwisdom.infras</groupId> |
| 41 | <artifactId>infras-mvc</artifactId> |
| 42 | </dependency> |
| 43 | |
| 44 | <dependency> |
| 45 | <groupId>com.supwisdom.infras</groupId> |
| 46 | <artifactId>infras-object-mapper</artifactId> |
| 47 | </dependency> |
| 48 | |
| 49 | <dependency> |
| 50 | <groupId>com.supwisdom.infras</groupId> |
| 51 | <artifactId>infras-i18n</artifactId> |
| 52 | </dependency> |
| 53 | |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 54 | <dependency> |
| 55 | <groupId>com.supwisdom.infras</groupId> |
| 56 | <artifactId>infras-lang</artifactId> |
| 57 | </dependency> |
| 58 | |
刘洪青 | d49e494 | 2018-08-03 16:08:44 +0800 | [diff] [blame] | 59 | <!-- |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 60 | <dependency> |
| 61 | <groupId>com.supwisdom.infras</groupId> |
| 62 | <artifactId>infras-pinyin</artifactId> |
| 63 | </dependency> |
| 64 | --> |
| 65 | |
刘洪青 | 9958726 | 2018-08-06 17:08:09 +0800 | [diff] [blame] | 66 | <dependency> |
刘洪青 | d6c4038 | 2018-08-10 16:10:28 +0800 | [diff] [blame] | 67 | <groupId>org.springframework.security</groupId> |
| 68 | <artifactId>spring-security-core</artifactId> |
| 69 | </dependency> |
| 70 | |
| 71 | <dependency> |
刘洪青 | 9958726 | 2018-08-06 17:08:09 +0800 | [diff] [blame] | 72 | <groupId>mysql</groupId> |
| 73 | <artifactId>mysql-connector-java</artifactId> |
刘洪青 | d6c4038 | 2018-08-10 16:10:28 +0800 | [diff] [blame] | 74 | <scope>runtime</scope> |
刘洪青 | 9958726 | 2018-08-06 17:08:09 +0800 | [diff] [blame] | 75 | </dependency> |
| 76 | |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 77 | <!-- Test things --> |
| 78 | <dependency> |
| 79 | <groupId>org.testng</groupId> |
| 80 | <artifactId>testng</artifactId> |
| 81 | <scope>test</scope> |
| 82 | </dependency> |
| 83 | |
| 84 | <dependency> |
| 85 | <groupId>org.springframework.boot</groupId> |
| 86 | <artifactId>spring-boot-starter-test</artifactId> |
| 87 | <scope>test</scope> |
| 88 | </dependency> |
| 89 | |
刘洪青 | d6c4038 | 2018-08-10 16:10:28 +0800 | [diff] [blame] | 90 | <dependency> |
| 91 | <groupId>com.h2database</groupId> |
| 92 | <artifactId>h2</artifactId> |
| 93 | <scope>test</scope> |
| 94 | </dependency> |
| 95 | |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 96 | </dependencies> |
| 97 | |
| 98 | <build> |
| 99 | <plugins> |
| 100 | <plugin> |
| 101 | <groupId>org.apache.maven.plugins</groupId> |
| 102 | <artifactId>maven-compiler-plugin</artifactId> |
| 103 | </plugin> |
| 104 | <plugin> |
| 105 | <groupId>org.apache.maven.plugins</groupId> |
| 106 | <artifactId>maven-failsafe-plugin</artifactId> |
| 107 | </plugin> |
| 108 | <plugin> |
| 109 | <groupId>org.apache.maven.plugins</groupId> |
| 110 | <artifactId>maven-javadoc-plugin</artifactId> |
| 111 | </plugin> |
| 112 | <plugin> |
| 113 | <groupId>org.apache.maven.plugins</groupId> |
| 114 | <artifactId>maven-release-plugin</artifactId> |
| 115 | </plugin> |
| 116 | <plugin> |
| 117 | <groupId>org.jacoco</groupId> |
| 118 | <artifactId>jacoco-maven-plugin</artifactId> |
| 119 | </plugin> |
| 120 | </plugins> |
| 121 | </build> |
| 122 | |
| 123 | </project> |