blob: 5bc48d9285aa8625132139f848ff820995764d7e [file] [log] [blame]
刘洪青f6b66112018-08-02 15:42:43 +08001<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 <!-- 微服务 健康监控 -->
刘洪青8d6ae1e2018-08-02 18:25:56 +080024 <dependency>
刘洪青f6b66112018-08-02 15:42:43 +080025 <groupId>org.springframework.boot</groupId>
26 <artifactId>spring-boot-starter-actuator</artifactId>
刘洪青8d6ae1e2018-08-02 18:25:56 +080027 </dependency>
刘洪青f6b66112018-08-02 15:42:43 +080028
29 <dependency>
30 <groupId>org.springframework.boot</groupId>
31 <artifactId>spring-boot-starter-web</artifactId>
32 </dependency>
33
34
刘洪青8d6ae1e2018-08-02 18:25:56 +080035 <!-- <dependency>
刘洪青f6b66112018-08-02 15:42:43 +080036 <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
刘洪青f6b66112018-08-02 15:42:43 +080050 <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>
刘洪青8d6ae1e2018-08-02 18:25:56 +080098 <dependency>
99 <groupId>org.springframework.cloud</groupId>
100 <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
101 </dependency>
刘洪青f6b66112018-08-02 15:42:43 +0800102
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>