|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | | - <modelVersion>4.0.0</modelVersion> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
5 | 6 |
|
6 | | - <groupId>com.lohika.jclub.hackster.client</groupId> |
7 | | - <artifactId>hackster-service-client</artifactId> |
8 | | - <version>0.0.1-SNAPSHOT</version> |
9 | | - <packaging>jar</packaging> |
| 7 | + <groupId>com.lohika.jclub.hackster.client</groupId> |
| 8 | + <artifactId>hackster-service-client</artifactId> |
| 9 | + <version>0.0.1-SNAPSHOT</version> |
| 10 | + <packaging>jar</packaging> |
10 | 11 |
|
11 | | - <name>hackster-service-client</name> |
12 | | - <description>Client library for Hackster Service</description> |
| 12 | + <name>hackster-service-client</name> |
| 13 | + <description>Client library for Hackster Service</description> |
13 | 14 |
|
14 | | - <parent> |
15 | | - <groupId>org.springframework.boot</groupId> |
16 | | - <artifactId>spring-boot-starter-parent</artifactId> |
17 | | - <version>1.5.4.RELEASE</version> |
18 | | - <relativePath/> <!-- lookup parent from repository --> |
19 | | - </parent> |
| 15 | + <parent> |
| 16 | + <groupId>org.springframework.boot</groupId> |
| 17 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 18 | + <version>1.5.4.RELEASE</version> |
| 19 | + <relativePath/> <!-- lookup parent from repository --> |
| 20 | + </parent> |
20 | 21 |
|
21 | | - <properties> |
22 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
23 | | - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
24 | | - <java.version>1.8</java.version> |
25 | | - <spring-cloud.version>Dalston.SR1</spring-cloud.version> |
26 | | - </properties> |
| 22 | + <properties> |
| 23 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 24 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 25 | + <java.version>1.8</java.version> |
| 26 | + <spring-cloud.version>Dalston.RELEASE</spring-cloud.version> |
| 27 | + </properties> |
27 | 28 |
|
28 | | - <dependencies> |
29 | | - <dependency> |
30 | | - <groupId>org.springframework.cloud</groupId> |
31 | | - <artifactId>spring-cloud-starter-eureka</artifactId> |
32 | | - </dependency> |
33 | | - <dependency> |
34 | | - <groupId>org.springframework.cloud</groupId> |
35 | | - <artifactId>spring-cloud-starter-feign</artifactId> |
36 | | - </dependency> |
37 | | - <dependency> |
38 | | - <groupId>org.springframework.cloud</groupId> |
39 | | - <artifactId>spring-cloud-starter-hystrix</artifactId> |
40 | | - </dependency> |
41 | | - <dependency> |
42 | | - <groupId>org.springframework.boot</groupId> |
43 | | - <artifactId>spring-boot-starter-hateoas</artifactId> |
44 | | - </dependency> |
| 29 | + <dependencies> |
| 30 | + <dependency> |
| 31 | + <groupId>org.springframework.cloud</groupId> |
| 32 | + <artifactId>spring-cloud-starter-eureka</artifactId> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>org.springframework.cloud</groupId> |
| 36 | + <artifactId>spring-cloud-starter-feign</artifactId> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>org.springframework.cloud</groupId> |
| 40 | + <artifactId>spring-cloud-starter-hystrix</artifactId> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>org.springframework.boot</groupId> |
| 44 | + <artifactId>spring-boot-starter-hateoas</artifactId> |
| 45 | + </dependency> |
45 | 46 |
|
46 | | - <dependency> |
47 | | - <groupId>org.projectlombok</groupId> |
48 | | - <artifactId>lombok</artifactId> |
49 | | - <optional>true</optional> |
50 | | - </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.projectlombok</groupId> |
| 49 | + <artifactId>lombok</artifactId> |
| 50 | + <optional>true</optional> |
| 51 | + </dependency> |
51 | 52 |
|
52 | | - <dependency> |
53 | | - <groupId>org.springframework.boot</groupId> |
54 | | - <artifactId>spring-boot-starter-test</artifactId> |
55 | | - <scope>test</scope> |
56 | | - </dependency> |
57 | | - <dependency> |
58 | | - <groupId>com.lohika.jclub</groupId> |
59 | | - <artifactId>discovery-server</artifactId> |
60 | | - <version>0.0.1-SNAPSHOT</version> |
61 | | - <scope>test</scope> |
62 | | - </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>org.springframework.boot</groupId> |
| 55 | + <artifactId>spring-boot-starter-test</artifactId> |
| 56 | + <scope>test</scope> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>com.lohika.jclub</groupId> |
| 60 | + <artifactId>discovery-server</artifactId> |
| 61 | + <version>0.0.1-SNAPSHOT</version> |
| 62 | + <scope>test</scope> |
| 63 | + </dependency> |
63 | 64 | <dependency> |
64 | 65 | <groupId>org.testcontainers</groupId> |
65 | 66 | <artifactId>testcontainers</artifactId> |
|
72 | 73 | <version>0.0.1-SNAPSHOT</version> |
73 | 74 | <scope>test</scope> |
74 | 75 | </dependency> |
75 | | - </dependencies> |
| 76 | + </dependencies> |
76 | 77 |
|
77 | | - <dependencyManagement> |
78 | | - <dependencies> |
79 | | - <dependency> |
80 | | - <groupId>org.springframework.cloud</groupId> |
81 | | - <artifactId>spring-cloud-dependencies</artifactId> |
82 | | - <version>${spring-cloud.version}</version> |
83 | | - <type>pom</type> |
84 | | - <scope>import</scope> |
85 | | - </dependency> |
86 | | - </dependencies> |
87 | | - </dependencyManagement> |
| 78 | + <dependencyManagement> |
| 79 | + <dependencies> |
| 80 | + <dependency> |
| 81 | + <groupId>org.springframework.cloud</groupId> |
| 82 | + <artifactId>spring-cloud-dependencies</artifactId> |
| 83 | + <version>${spring-cloud.version}</version> |
| 84 | + <type>pom</type> |
| 85 | + <scope>import</scope> |
| 86 | + </dependency> |
| 87 | + </dependencies> |
| 88 | + </dependencyManagement> |
88 | 89 |
|
89 | 90 | </project> |
0 commit comments