-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
42 lines (37 loc) · 1.42 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>pl.piomin</groupId>
<artifactId>spring-microservices</artifactId>
<version>2.1.0.RELEASE</version>
<packaging>pom</packaging>
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-parent</artifactId>
<version>Brixton.RELEASE</version>
</parent>
<properties>
<java.version>1.8</java.version>
<spring.boot>1.4.2.RELEASE</spring.boot>
<spring.boot.eureka>1.2.2.RELEASE</spring.boot.eureka>
</properties>
<modules>
<module>discovery-service</module>
<module>gateway-service</module>
<module>zipkin-service</module>
<module>recruitement-service</module>
<module>employee-service</module>
<module>position-service</module>
<module>account-service</module>
<module>customer-service</module>
<module>contrat-service</module>
<module>conge-service</module>
</modules>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.12</version>
</dependency>
</dependencies>
</project>