blob: 0cddaaebe0056fdd96d770050ad25b26d81d59c5 [file] [log] [blame]
chenbo0e267832018-08-21 11:19:05 +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>leaveschool-parent</artifactId>
8 <version>0.0.1-SNAPSHOT</version>
9 </parent>
10
11 <groupId>com.supwisdom.leaveschool</groupId>
12 <artifactId>leaveschool-client</artifactId>
13 <packaging>jar</packaging>
chenbodeb88c72018-08-23 19:48:52 +080014
15 <properties>
16 <io.springfox.version>2.9.2</io.springfox.version>
17 </properties>
chenbo0e267832018-08-21 11:19:05 +080018
19
20 <dependencies>
21
22 <dependency>
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>
37
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
54 <dependency>
55 <groupId>com.supwisdom.infras</groupId>
56 <artifactId>infras-lang</artifactId>
57 </dependency>
58
59 <dependency>
60 <groupId>com.supwisdom.infras</groupId>
61 <artifactId>infras-pinyin</artifactId>
62 </dependency>
63 -->
64
65
66 <dependency>
67 <groupId>com.supwisdom.infras</groupId>
68 <artifactId>infras-security</artifactId>
69 </dependency>
70
71 <!-- <dependency>
72 <groupId>org.springframework.security</groupId>
73 <artifactId>spring-security-cas</artifactId>
74 </dependency> -->
75
刘洪青ce0dfed2018-08-21 22:13:15 +080076 <dependency>
77 <groupId>org.springframework.security.oauth.boot</groupId>
78 <artifactId>spring-security-oauth2-autoconfigure</artifactId>
79 </dependency>
80
chenbo0e267832018-08-21 11:19:05 +080081
82 <dependency>
83 <groupId>org.springframework.boot</groupId>
84 <artifactId>spring-boot-starter-thymeleaf</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.thymeleaf.extras</groupId>
88 <artifactId>thymeleaf-extras-springsecurity4</artifactId>
89 </dependency>
90
91
92
93 <!-- <dependency>
94 <groupId>org.springframework.cloud</groupId>
95 <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
96 </dependency> -->
97
98 <dependency>
99 <groupId>org.springframework.cloud</groupId>
100 <artifactId>spring-cloud-starter-openfeign</artifactId>
101 </dependency>
102
103 <dependency>
104 <groupId>org.springframework.cloud</groupId>
105 <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
106 </dependency>
107 <dependency>
108 <groupId>org.springframework.cloud</groupId>
109 <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
110 </dependency>
chenbodeb88c72018-08-23 19:48:52 +0800111
112 <dependency>
113 <groupId>io.springfox</groupId>
114 <artifactId>springfox-swagger2</artifactId>
115 <version>${io.springfox.version}</version>
116 </dependency>
117 <dependency>
118 <groupId>io.springfox</groupId>
119 <artifactId>springfox-swagger-ui</artifactId>
120 <version>${io.springfox.version}</version>
121 </dependency>
chenbo0e267832018-08-21 11:19:05 +0800122
123
124 <dependency>
125 <groupId>org.json</groupId>
126 <artifactId>json</artifactId>
127 </dependency>
128
129
130 <!-- Test things -->
131 <dependency>
132 <groupId>org.testng</groupId>
133 <artifactId>testng</artifactId>
134 <scope>test</scope>
135 </dependency>
136
137 <dependency>
138 <groupId>org.springframework.boot</groupId>
139 <artifactId>spring-boot-starter-test</artifactId>
140 <scope>test</scope>
141 </dependency>
bin.zhang7195c142018-08-23 16:05:20 +0800142
bin.zhangc9726182018-08-22 17:14:28 +0800143
chenbo0e267832018-08-21 11:19:05 +0800144 </dependencies>
145
146 <build>
147 <plugins>
148 <plugin>
149 <groupId>org.apache.maven.plugins</groupId>
150 <artifactId>maven-compiler-plugin</artifactId>
151 </plugin>
152 <plugin>
153 <groupId>org.apache.maven.plugins</groupId>
154 <artifactId>maven-failsafe-plugin</artifactId>
155 </plugin>
156 <plugin>
157 <groupId>org.apache.maven.plugins</groupId>
158 <artifactId>maven-javadoc-plugin</artifactId>
159 </plugin>
160 <plugin>
161 <groupId>org.apache.maven.plugins</groupId>
162 <artifactId>maven-release-plugin</artifactId>
163 </plugin>
164 <plugin>
165 <groupId>org.jacoco</groupId>
166 <artifactId>jacoco-maven-plugin</artifactId>
167 </plugin>
168 </plugins>
169 </build>
170
171</project>