|
16 | 16 |
|
17 | 17 | <properties> |
18 | 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 19 | + <feign.version>9.4.0</feign.version> |
| 20 | + <slf4j.version>1.7.21</slf4j.version> |
| 21 | + <log4j.version>2.7</log4j.version> |
| 22 | + <lombok.version>1.16.12</lombok.version> |
| 23 | + <junit.version>4.12</junit.version> |
| 24 | + <maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version> |
| 25 | + <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version> |
| 26 | + <spring-boot-maven-plugin.version>1.4.2.RELEASE</spring-boot-maven-plugin.version> |
19 | 27 | </properties> |
20 | 28 |
|
21 | 29 | <dependencies> |
22 | 30 | <dependency> |
23 | 31 | <groupId>io.github.openfeign</groupId> |
24 | 32 | <artifactId>feign-core</artifactId> |
25 | | - <version>9.3.1</version> |
| 33 | + <version>${feign.version}</version> |
26 | 34 | </dependency> |
27 | 35 | <dependency> |
28 | 36 | <groupId>io.github.openfeign</groupId> |
29 | 37 | <artifactId>feign-okhttp</artifactId> |
30 | | - <version>9.3.1</version> |
| 38 | + <version>${feign.version}</version> |
31 | 39 | </dependency> |
32 | 40 | <dependency> |
33 | 41 | <groupId>io.github.openfeign</groupId> |
34 | 42 | <artifactId>feign-gson</artifactId> |
35 | | - <version>9.3.1</version> |
| 43 | + <version>${feign.version}</version> |
36 | 44 | </dependency> |
37 | 45 | <dependency> |
38 | 46 | <groupId>io.github.openfeign</groupId> |
39 | 47 | <artifactId>feign-slf4j</artifactId> |
40 | | - <version>9.3.1</version> |
| 48 | + <version>${feign.version}</version> |
41 | 49 | </dependency> |
42 | 50 | <dependency> |
43 | 51 | <groupId>org.slf4j</groupId> |
44 | 52 | <artifactId>slf4j-api</artifactId> |
45 | | - <version>1.7.21</version> |
| 53 | + <version>${slf4j.version}</version> |
46 | 54 | </dependency> |
47 | 55 | <dependency> |
48 | 56 | <groupId>org.apache.logging.log4j</groupId> |
49 | 57 | <artifactId>log4j-core</artifactId> |
50 | | - <version>2.6.2</version> |
| 58 | + <version>${log4j.version}</version> |
51 | 59 | </dependency> |
52 | 60 | <dependency> |
53 | 61 | <groupId>org.apache.logging.log4j</groupId> |
54 | 62 | <artifactId>log4j-slf4j-impl</artifactId> |
55 | | - <version>2.6.2</version> |
| 63 | + <version>${log4j.version}</version> |
56 | 64 | </dependency> |
57 | 65 | <dependency> |
58 | 66 | <groupId>org.projectlombok</groupId> |
59 | 67 | <artifactId>lombok</artifactId> |
60 | | - <version>1.16.10</version> |
| 68 | + <version>${lombok.version}</version> |
61 | 69 | <scope>provided</scope> |
62 | 70 | </dependency> |
63 | 71 | <dependency> |
64 | 72 | <groupId>junit</groupId> |
65 | 73 | <artifactId>junit</artifactId> |
66 | | - <version>4.12</version> |
| 74 | + <version>${junit.version}</version> |
67 | 75 | <scope>test</scope> |
68 | 76 | </dependency> |
69 | 77 | </dependencies> |
|
74 | 82 | <plugin> |
75 | 83 | <groupId>org.apache.maven.plugins</groupId> |
76 | 84 | <artifactId>maven-compiler-plugin</artifactId> |
77 | | - <version>3.5.1</version> |
| 85 | + <version>${maven-compiler-plugin.version}</version> |
78 | 86 | <configuration> |
79 | 87 | <source>1.8</source> |
80 | 88 | <target>1.8</target> |
|
83 | 91 | <plugin> |
84 | 92 | <groupId>org.apache.maven.plugins</groupId> |
85 | 93 | <artifactId>maven-surefire-plugin</artifactId> |
86 | | - <version>2.19.1</version> |
| 94 | + <version>${maven-surefire-plugin.version}</version> |
87 | 95 | <configuration> |
88 | 96 | <skipTests>true</skipTests> |
89 | 97 | </configuration> |
90 | 98 | </plugin> |
91 | 99 | <plugin> |
92 | 100 | <groupId>org.springframework.boot</groupId> |
93 | 101 | <artifactId>spring-boot-maven-plugin</artifactId> |
94 | | - <version>1.4.0.RELEASE</version> |
| 102 | + <version>${spring-boot-maven-plugin.version}</version> |
95 | 103 | </plugin> |
96 | 104 | </plugins> |
97 | 105 | </pluginManagement> |
98 | 106 | </build> |
| 107 | + |
99 | 108 | </project> |
0 commit comments