刘洪青 | 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-client</artifactId> |
| 13 | <packaging>jar</packaging> |
| 14 | |
| 15 | |
| 16 | <dependencies> |
| 17 | |
| 18 | <dependency> |
| 19 | <groupId>org.springframework.boot</groupId> |
| 20 | <artifactId>spring-boot-starter</artifactId> |
| 21 | </dependency> |
| 22 | |
| 23 | <!-- 微服务 健康监控 --> |
刘洪青 | 8d6ae1e | 2018-08-02 18:25:56 +0800 | [diff] [blame^] | 24 | <dependency> |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 25 | <groupId>org.springframework.boot</groupId> |
| 26 | <artifactId>spring-boot-starter-actuator</artifactId> |
刘洪青 | 8d6ae1e | 2018-08-02 18:25:56 +0800 | [diff] [blame^] | 27 | </dependency> |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 28 | |
| 29 | <dependency> |
| 30 | <groupId>org.springframework.boot</groupId> |
| 31 | <artifactId>spring-boot-starter-web</artifactId> |
| 32 | </dependency> |
| 33 | |
| 34 | |
刘洪青 | 8d6ae1e | 2018-08-02 18:25:56 +0800 | [diff] [blame^] | 35 | <!-- <dependency> |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 36 | <groupId>com.supwisdom.infras</groupId> |
| 37 | <artifactId>infras-mvc</artifactId> |
| 38 | </dependency> |
| 39 | |
| 40 | <dependency> |
| 41 | <groupId>com.supwisdom.infras</groupId> |
| 42 | <artifactId>infras-object-mapper</artifactId> |
| 43 | </dependency> |
| 44 | |
| 45 | <dependency> |
| 46 | <groupId>com.supwisdom.infras</groupId> |
| 47 | <artifactId>infras-i18n</artifactId> |
| 48 | </dependency> |
| 49 | |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 50 | <dependency> |
| 51 | <groupId>com.supwisdom.infras</groupId> |
| 52 | <artifactId>infras-lang</artifactId> |
| 53 | </dependency> |
| 54 | |
| 55 | <dependency> |
| 56 | <groupId>com.supwisdom.infras</groupId> |
| 57 | <artifactId>infras-pinyin</artifactId> |
| 58 | </dependency> |
| 59 | --> |
| 60 | |
| 61 | |
| 62 | <dependency> |
| 63 | <groupId>com.supwisdom.infras</groupId> |
| 64 | <artifactId>infras-security</artifactId> |
| 65 | </dependency> |
| 66 | |
| 67 | <!-- <dependency> |
| 68 | <groupId>org.springframework.security</groupId> |
| 69 | <artifactId>spring-security-cas</artifactId> |
| 70 | </dependency> --> |
| 71 | |
| 72 | |
| 73 | <dependency> |
| 74 | <groupId>org.springframework.boot</groupId> |
| 75 | <artifactId>spring-boot-starter-thymeleaf</artifactId> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.thymeleaf.extras</groupId> |
| 79 | <artifactId>thymeleaf-extras-springsecurity4</artifactId> |
| 80 | </dependency> |
| 81 | |
| 82 | |
| 83 | |
| 84 | <!-- <dependency> |
| 85 | <groupId>org.springframework.cloud</groupId> |
| 86 | <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> |
| 87 | </dependency> --> |
| 88 | |
| 89 | <dependency> |
| 90 | <groupId>org.springframework.cloud</groupId> |
| 91 | <artifactId>spring-cloud-starter-openfeign</artifactId> |
| 92 | </dependency> |
| 93 | |
| 94 | <dependency> |
| 95 | <groupId>org.springframework.cloud</groupId> |
| 96 | <artifactId>spring-cloud-starter-netflix-hystrix</artifactId> |
| 97 | </dependency> |
刘洪青 | 8d6ae1e | 2018-08-02 18:25:56 +0800 | [diff] [blame^] | 98 | <dependency> |
| 99 | <groupId>org.springframework.cloud</groupId> |
| 100 | <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId> |
| 101 | </dependency> |
刘洪青 | f6b6611 | 2018-08-02 15:42:43 +0800 | [diff] [blame] | 102 | |
| 103 | |
| 104 | <!-- Test things --> |
| 105 | <dependency> |
| 106 | <groupId>org.testng</groupId> |
| 107 | <artifactId>testng</artifactId> |
| 108 | <scope>test</scope> |
| 109 | </dependency> |
| 110 | |
| 111 | <dependency> |
| 112 | <groupId>org.springframework.boot</groupId> |
| 113 | <artifactId>spring-boot-starter-test</artifactId> |
| 114 | <scope>test</scope> |
| 115 | </dependency> |
| 116 | |
| 117 | </dependencies> |
| 118 | |
| 119 | <build> |
| 120 | <plugins> |
| 121 | <plugin> |
| 122 | <groupId>org.apache.maven.plugins</groupId> |
| 123 | <artifactId>maven-compiler-plugin</artifactId> |
| 124 | </plugin> |
| 125 | <plugin> |
| 126 | <groupId>org.apache.maven.plugins</groupId> |
| 127 | <artifactId>maven-failsafe-plugin</artifactId> |
| 128 | </plugin> |
| 129 | <plugin> |
| 130 | <groupId>org.apache.maven.plugins</groupId> |
| 131 | <artifactId>maven-javadoc-plugin</artifactId> |
| 132 | </plugin> |
| 133 | <plugin> |
| 134 | <groupId>org.apache.maven.plugins</groupId> |
| 135 | <artifactId>maven-release-plugin</artifactId> |
| 136 | </plugin> |
| 137 | <plugin> |
| 138 | <groupId>org.jacoco</groupId> |
| 139 | <artifactId>jacoco-maven-plugin</artifactId> |
| 140 | </plugin> |
| 141 | </plugins> |
| 142 | </build> |
| 143 | |
| 144 | </project> |