This repository has been archived by the owner on Jul 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
61 lines (57 loc) · 2.28 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
<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>com.example</groupId>
<artifactId>fruit-sb-project</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Spring Boot - Project</name>
<description>Spring Boot - Project</description>
<properties>
<snowdrop-bom.version>2.1.3.Final</snowdrop-bom.version>
<spring-boot.version>2.1.3.RELEASE</spring-boot.version>
<ap4k.version>0.4.4</ap4k.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>me.snowdrop</groupId>
<artifactId>spring-boot-bom</artifactId>
<version>${snowdrop-bom.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- To generate CRD -->
<dependency>
<groupId>io.ap4k</groupId>
<artifactId>ap4k-core</artifactId>
<version>${ap4k.version}</version>
</dependency>
<dependency>
<groupId>io.ap4k</groupId>
<artifactId>kubernetes-annotations</artifactId>
<version>${ap4k.version}</version>
</dependency>
<dependency>
<groupId>io.ap4k</groupId>
<artifactId>component-annotations</artifactId>
<version>${ap4k.version}</version>
</dependency>
<dependency>
<groupId>io.ap4k</groupId>
<artifactId>servicecatalog-annotations</artifactId>
<version>${ap4k.version}</version>
</dependency>
<dependency>
<groupId>io.ap4k</groupId>
<artifactId>ap4k-spring-boot</artifactId>
<version>${ap4k.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>fruit-client-sb</module>
<module>fruit-backend-sb</module>
<module>fruit-configuration</module>
</modules>
</project>