This repository has been archived by the owner on Jan 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpom.xml
478 lines (457 loc) · 23.7 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.sap.cloud.sample</groupId>
<artifactId>hello-world</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<url>https://github.com/stephanme/cloud-helloworld</url>
<properties>
<!-- Properties that hold host and port of proxy should you have one - otherwise remove all occurrences of the properties -->
<proxy.host>${env.PROXY_HOST}</proxy.host>
<proxy.port>${env.PROXY_PORT}</proxy.port>
<!-- Properties that hold information on the location and version of the SAP HANA Cloud Platform SDK -->
<sap.cloud.sdk.path>${project.build.directory}/sdk</sap.cloud.sdk.path>
<sap.cloud.sdk.version>2.17.6</sap.cloud.sdk.version>
<!-- Property that holds supported JDK version for the given SAP HANA Cloud SDK -->
<sap.cloud.jdk.version>1.6</sap.cloud.jdk.version>
<!-- Properties that hold information on your SAP HANA Cloud account -->
<sap.cloud.host>hanatrial.ondemand.com</sap.cloud.host>
<sap.cloud.account>${env.SAP_CLOUD_ACCOUNT}</sap.cloud.account>
<sap.cloud.username>${env.SAP_CLOUD_USERNAME}</sap.cloud.username>
<sap.cloud.password>${env.SAP_CLOUD_PASSWORD}</sap.cloud.password>
<sap.cloud.application>hello</sap.cloud.application>
<!-- Properties that hold the local server information required for local integration-testing -->
<local.server.root>${project.build.directory}/server</local.server.root>
<local.server.host>localhost</local.server.host>
<local.server.console.port>9003</local.server.console.port>
<local.server.jmx.port>9004</local.server.jmx.port>
<local.server.http.port>9080</local.server.http.port>
<local.server.https.port>9443</local.server.https.port>
<local.server.ajp.port>9009</local.server.ajp.port>
<!-- Property setting source encoding to UTF-8 -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
<!-- The SAP HANA Cloud Platform Java Web API -->
<dependency>
<groupId>com.sap.cloud</groupId>
<artifactId>neo-java-web-api</artifactId>
<version>${sap.cloud.sdk.version}</version>
<scope>provided</scope>
</dependency>
<!-- Required for testing -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<!-- Required for integration testing -->
<dependency>
<groupId>httpunit</groupId>
<artifactId>httpunit</artifactId>
<version>1.6.2</version> <!-- Do NOT use 1.7 as it submits form twice -->
<scope>test</scope>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xmlParserAPIs</artifactId>
<version>2.2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>nekohtml</groupId>
<artifactId>nekohtml</artifactId>
<version>0.9.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rhino</groupId>
<artifactId>js</artifactId>
<version>1.6R5</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.1</version>
<configuration>
<warName>${project.artifactId}</warName>
<archive>
<manifestFile>src/main/webapp/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<!-- Set compiler to officially supported JDK version for the given SAP HANA Cloud SDK -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>${sap.cloud.jdk.version}</source>
<target>${sap.cloud.jdk.version}</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
<!-- Include only unit tests for maven-surefire-plugin that is run in test phase -->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<configuration>
<excludes>
<exclude>**/integrationtest/**/*Test.java</exclude>
</excludes>
<includes>
<include>**/test/**/*Test.java</include>
</includes>
</configuration>
</plugin>
<!-- Include only integration tests for maven-failsafe-plugin that is run in integration-test phase -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.12</version>
<configuration>
<excludes>
<exclude>**/test/**/*Test.java</exclude>
</excludes>
<includes>
<include>**/integrationtest/**/*Test.java</include>
</includes>
</configuration>
</plugin>
<!-- Enforce officially supported JDK and validated Maven version for the given SAP HANA Cloud SDK or higher -->
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>[${sap.cloud.jdk.version},2.0)</version>
</requireJavaVersion>
<requireMavenVersion>
<version>[3.0.3, 4.0.0)</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!-- Force m2e to ignore plugin goal that it doesn't support naturally -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-enforcer-plugin
</artifactId>
<versionRange>
[0.0.1,)
</versionRange>
<goals>
<goal>enforce</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<!-- Activate compiler warnings when matching JDK is present (compiler then doesn't generate bootstrap warnings) -->
<profile>
<id>compiler-warnings</id>
<activation>
<activeByDefault>false</activeByDefault>
<jdk>1.6</jdk>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<compilerArguments>
<Werror />
</compilerArguments>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<!-- Install local server from the P2 repository that is contained inside the SAP HANA Cloud SDK, deploy the built web application
into it, start local server, wait for it and the built and deployed web application to become available, integration-test
the web application on the local server, and stop the local server finally - note that you need to supply the environment
variables PROXY_HOST and PROXY_PORT if you have a proxy -->
<profile>
<id>local-integration-tests</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireProperty>
<property>proxy.host</property>
<message>Environment variable PROXY_HOST is missing, but required!</message>
</requireProperty>
<requireProperty>
<property>proxy.port</property>
<message>Environment variable PROXY_PORT is missing, but required!</message>
</requireProperty>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.sap.cloud</groupId>
<artifactId>neo-java-web-maven-plugin</artifactId>
<version>${sap.cloud.sdk.version}</version>
<executions>
<execution>
<id>setup-local-server</id>
<phase>pre-integration-test</phase>
<goals>
<goal>install-sdk</goal>
<goal>install-local</goal>
<goal>deploy-local</goal>
</goals>
</execution>
<execution>
<id>start-local-server</id>
<phase>integration-test</phase>
<goals>
<goal>start-local</goal>
</goals>
</execution>
<execution>
<id>cleanup-local-server</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop-local</goal>
</goals>
</execution>
</executions>
<configuration>
<sdkInstallPath>${sap.cloud.sdk.path}</sdkInstallPath>
<location>${local.server.root}</location>
<consolePort>${local.server.console.port}</consolePort>
<httpPort>${local.server.http.port}</httpPort>
<httpsPort>${local.server.https.port}</httpsPort>
<jmxPort>${local.server.jmx.port}</jmxPort>
<ajpPort>${local.server.ajp.port}</ajpPort>
<httpProxyHost>${proxy.host}</httpProxyHost>
<httpProxyPort>${proxy.port}</httpProxyPort>
<httpsProxyHost>${proxy.host}</httpsProxyHost>
<httpsProxyPort>${proxy.port}</httpsProxyPort>
<waitUrl>http://${local.server.host}:${local.server.http.port}/${project.artifactId}/</waitUrl>
<source>${project.build.directory}/${project.artifactId}.war</source>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<id>execute-local-integration-tests</id>
<phase>integration-test</phase>
<goals>
<goal>integration-test</goal>
</goals>
<configuration>
<argLine>-Dhttp.proxyHost=${proxy.host} -Dhttp.proxyPort=${proxy.port} -Dhttps.proxyHost=${proxy.host} -Dhttps.proxyPort=${proxy.port}</argLine>
<systemPropertyVariables>
<integration.test.server.url>http://${local.server.host}:${local.server.http.port}</integration.test.server.url>
</systemPropertyVariables>
</configuration>
</execution>
<execution>
<id>verify-local-integration-tests</id>
<goals>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<!-- Stop cloud server, deploy the built web application into it, start cloud server, wait for it and the built and
deployed web application to become available, integration-test the web application on the cloud server, and stop the cloud
server finally - note that you need to supply the environment variables SAP_CLOUD_ACCOUNT, SAP_CLOUD_USERNAME, and SAP_CLOUD_PASSWORD
for the operations to pass successfully and PROXY_HOST and PROXY_PORT if you have a proxy -->
<profile>
<id>cloud-integration-tests</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireProperty>
<property>proxy.host</property>
<message>Environment variable PROXY_HOST is missing, but required!</message>
</requireProperty>
<requireProperty>
<property>proxy.port</property>
<message>Environment variable PROXY_PORT is missing, but required!</message>
</requireProperty>
<requireProperty>
<property>sap.cloud.account</property>
<message>Environment variable SAP_CLOUD_ACCOUNT is missing, but required!</message>
</requireProperty>
<requireProperty>
<property>sap.cloud.username</property>
<message>Environment variable SAP_CLOUD_USERNAME is missing, but required!</message>
</requireProperty>
<requireProperty>
<property>sap.cloud.password</property>
<message>Environment variable SAP_CLOUD_PASSWORD is missing, but required!</message>
</requireProperty>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.sap.cloud</groupId>
<artifactId>neo-java-web-maven-plugin</artifactId>
<version>${sap.cloud.sdk.version}</version>
<executions>
<execution>
<id>prepare-cloud-server</id>
<phase>pre-integration-test</phase>
<goals>
<goal>install-sdk</goal>
<goal>stop</goal>
<goal>deploy</goal>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>cleanup-cloud-server</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
<configuration>
<sdkInstallPath>${sap.cloud.sdk.path}</sdkInstallPath>
<host>${sap.cloud.host}</host>
<account>${sap.cloud.account}</account>
<application>${sap.cloud.application}</application>
<user>${sap.cloud.username}</user>
<password>${sap.cloud.password}</password>
<source>${project.build.directory}/${project.artifactId}.war</source>
<synchronous>true</synchronous>
<consoleHttpProxyHost>${proxy.host}</consoleHttpProxyHost>
<consoleHttpProxyPort>${proxy.port}</consoleHttpProxyPort>
<consoleHttpsProxyHost>${proxy.host}</consoleHttpsProxyHost>
<consoleHttpsProxyPort>${proxy.port}</consoleHttpsProxyPort>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<id>execute-cloud-integration-tests</id>
<phase>integration-test</phase>
<goals>
<goal>integration-test</goal>
</goals>
<configuration>
<argLine>-Dhttp.proxyHost=${proxy.host} -Dhttp.proxyPort=${proxy.port} -Dhttps.proxyHost=${proxy.host} -Dhttps.proxyPort=${proxy.port}</argLine>
<systemPropertyVariables>
<sap.cloud.username>${sap.cloud.username}</sap.cloud.username>
<sap.cloud.password>${sap.cloud.password}</sap.cloud.password>
<integration.test.server.url>https://${sap.cloud.application}${sap.cloud.account}.${sap.cloud.host}</integration.test.server.url>
</systemPropertyVariables>
</configuration>
</execution>
<execution>
<id>verify-cloud-integration-tests</id>
<goals>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>