-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
140 lines (129 loc) · 4.03 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?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>
<groupId>com.keptn.neotys</groupId>
<artifactId>testexecutor</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>testexecutor</name>
<description>NeoLoad executor for Keptn</description>
<properties>
<java.version>1.8</java.version>
<tag>0.6.0</tag>
<dockerimage>docker.io/hrexed/keptn_neoload</dockerimage>
<NL_WEB_HOST>neoload.saas.com</NL_WEB_HOST>
<NL_API_HOST>neoload-api.saas.com</NL_API_HOST>
<NL_API_TOKEN>15304f743f34ca33c458927a40945b7424a2066b95563774</NL_API_TOKEN>
<NL_WEB_ZONEID>On10d</NL_WEB_ZONEID>
<NL_UPLOAD_HOST>neoload-files.saas.com</NL_UPLOAD_HOST>
<port>8080</port>
<login>DEBUG</login>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.rholder</groupId>
<artifactId>guava-retrying</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-api</artifactId>
<version>0.2.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.cloudevents</groupId>
<artifactId>http-vertx</artifactId>
<version>0.2.2-SNAPSHOT</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.fabric8/kubernetes-client -->
<dependency>
<groupId>io.fabric8</groupId>
<artifactId>kubernetes-client</artifactId>
<version>4.3.0</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.24</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.neotys.ascode/swagger-java-client -->
<dependency>
<groupId>com.neotys.ascode</groupId>
<artifactId>swagger-java-client</artifactId>
<version>1.0.6</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>5.3.1.201904271842-r</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.kubernetes/client-java -->
<dependency>
<groupId>io.kubernetes</groupId>
<artifactId>client-java</artifactId>
<version>5.0.0</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-web-client</artifactId>
<version>3.6.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>1.4.0</version>
<configuration>
<from>
<image>gcr.io/distroless/java:8</image>
</from>
<to>
<image>${dockerimage}</image>
<tags>
<tag>${tag}</tag>
<tag>latest</tag>
</tags>
</to>
<allowInsecureRegistries>true</allowInsecureRegistries>
<container>
<ports>
<port>${port}</port>
</ports>
<environment>
<logging-level>${login}</logging-level>
<NL_WEB_HOST>${NL_WEB_HOST}</NL_WEB_HOST>
<NL_API_HOST>${NL_API_HOST}</NL_API_HOST>
<NL_API_TOKEN>${NL_API_TOKEN}</NL_API_TOKEN>
<NL_WEB_ZONEID>${NL_WEB_ZONEID}</NL_WEB_ZONEID>
<NL_UPLOAD_HOST>${NL_UPLOAD_HOST}</NL_UPLOAD_HOST>
</environment>
</container>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>