-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathpom.xml
116 lines (107 loc) · 4.35 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
<?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">
<parent>
<artifactId>dekorate-project</artifactId>
<groupId>io.dekorate</groupId>
<version>4.1.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>examples</artifactId>
<packaging>pom</packaging>
<name>Dekorate :: Examples</name>
<profiles>
<profile>
<id>with-internal-registry</id>
<activation>
<property>
<name>!docker-registry</name>
</property>
</activation>
<modules>
<module>kubernetes-with-configmap-volume-example</module>
<module>kubernetes-with-custom-image-name-example</module>
<module>kubernetes-with-hostaliases-example</module>
<module>kubernetes-with-nodeselectors-example</module>
<module>frameworkless-on-kubernetes-example</module>
<module>frameworkless-on-openshift-example</module>
<module>spring-boot-on-kubernetes-example</module>
<module>spring-boot-on-kubernetes-without-annotations</module>
<module>spring-boot-on-kubernetes-with-jib-example</module>
<module>spring-boot-on-kubernetes-with-jib-custom-registry-example</module>
<module>spring-boot-on-knative-example</module>
<module>spring-boot-on-openshift-example</module>
<module>spring-boot-on-openshift-with-jib-custom-registry-example</module>
<module>spring-boot-on-openshift-with-ocp-properties-example</module>
<module>spring-boot-on-openshift-with-dekorate-profile-example</module>
<module>spring-boot-with-groovy-on-openshift-example</module>
<module>spring-boot-with-existing-manifests-on-kubernetes-example</module>
<module>spring-boot-with-fmp-on-kubernetes-example</module>
<module>spring-boot-with-prometheus-on-kubernetes-example</module>
<module>spring-boot-with-jaeger-on-kubernetes-example</module>
<module>spring-boot-with-tekton-example</module>
<module>spring-boot-with-tekton-and-m2-pvc-example</module>
<module>spring-boot-on-kubernetes-with-certmanager-example</module>
<module>spring-boot-on-openshift-with-certmanager-example</module>
<module>thorntail-on-kubernetes-example</module>
<module>thorntail-on-openshift-example</module>
<module>vertx-on-kubernetes-example</module>
<module>vertx-on-openshift-example</module>
<module>minikube-example</module>
<module>minikube-example-with-properties</module>
<module>helm-on-kubernetes-example</module>
<module>helm-on-openshift-example</module>
<module>kind-example</module>
</modules>
</profile>
<profile>
<id>with-dockerio</id>
<activation>
<property>
<name>docker-registry</name>
<value>docker.io</value>
</property>
</activation>
<modules>
<module>spring-boot-on-openshift-with-docker-example</module>
</modules>
</profile>
<profile>
<id>with-service-binding-examples</id>
<modules>
<module>spring-boot-on-kubernetes-with-sbo-example</module>
</modules>
</profile>
<profile>
<id>with-gradle-examples</id>
<activation>
<jdk>[1,1.8)</jdk>
</activation>
<!-- We need to skip all modules using gradle with jdk11+ as the
org.fortasoft:gradle-maven-plugin doesn't support it. So we only enable them on jdk9. -->
<!-- Update: we will also disable on jdk8 as its causing issues with the
CI -->
<modules>
<module>spring-boot-with-gradle-on-kubernetes-example</module>
<module>spring-boot-with-gradle-on-openshift-example</module>
</modules>
</profile>
<profile>
<id>with-knative-examples</id>
<modules>
<module>knative-example</module>
</modules>
</profile>
<profile>
<id>with-openshift-specific-examples</id>
<modules>
<module>multimodule-projects-on-openshift-example</module>
</modules>
</profile>
<profile>
<id>with-kubernetes-specific-examples</id>
<modules>
<module>multimodule-projects-on-kubernetes-example</module>
</modules>
</profile>
</profiles>
</project>