forked from open-coffee/coffeenet-config-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
124 lines (110 loc) · 4.32 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>coffee.synyx</groupId>
<artifactId>coffeenet-starter-parent</artifactId>
<version>0.37.0</version>
<relativePath/>
</parent>
<artifactId>config-server</artifactId>
<version>0.9.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>CoffeeNet Config Server</name>
<description>
Config Server to retrieve specific client configuration
dedicated for environments and applications
</description>
<scm>
<url>https://github.com/coffeenet/coffeenet-config-server</url>
<connection>scm:git:git://github.com/coffeenet/coffeenet-config-server.git</connection>
<developerConnection>scm:git:[email protected]:coffeenet/coffeenet-config-server.git</developerConnection>
<tag>HEAD</tag>
</scm>
<issueManagement>
<url>https://github.com/coffeenet/coffeenet-config-server/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<properties>
<docker.finalName>${project.build.finalName}</docker.finalName>
</properties>
<dependencies>
<!--CoffeeNet -->
<dependency>
<groupId>coffee.synyx</groupId>
<artifactId>starter-logging</artifactId>
</dependency>
<dependency>
<groupId>coffee.synyx</groupId>
<artifactId>starter-discovery</artifactId>
</dependency>
<!-- Spring Security -->
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-jwt</artifactId>
</dependency>
<!-- Spring Config -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<!-- Create Meta Data to provide autocompletion for configuration -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>releases.public.nexus.synyx.de</id>
<url>http://nexus.synyx.de/content/repositories/public-releases</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<!-- Docker -->
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.24.0</version>
<configuration>
<images>
<image>
<name>coffeenet/coffeenet-config-server</name>
<build>
<dockerFileDir>${project.basedir}</dockerFileDir>
<assembly>
<descriptorRef>artifact</descriptorRef>
</assembly>
<tags>
<tag>${project.version}</tag>
<tag>latest</tag>
</tags>
</build>
</image>
</images>
</configuration>
</plugin>
</plugins>
</build>
</project>