|
1 | | -<?xml version="1.0" encoding="UTF-8" ?> |
2 | | - |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
3 | 2 | <!-- |
4 | | -
|
5 | | - Copyright (c) 2019, 2025 Oracle and/or its affiliates. |
| 3 | + Copyright (c) 2025 Oracle and/or its affiliates. |
6 | 4 |
|
7 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
8 | 6 | you may not use this file except in compliance with the License. |
|
15 | 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
16 | 14 | See the License for the specific language governing permissions and |
17 | 15 | limitations under the License. |
| 16 | + --> |
18 | 17 |
|
19 | | ---> |
20 | 18 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
21 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
22 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
23 | | - |
| 19 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
24 | 21 | <modelVersion>4.0.0</modelVersion> |
25 | 22 | <parent> |
26 | 23 | <groupId>io.helidon.applications</groupId> |
27 | 24 | <artifactId>helidon-se</artifactId> |
28 | 25 | <version>4.3.0-SNAPSHOT</version> |
29 | 26 | <relativePath/> |
30 | 27 | </parent> |
31 | | - <groupId>io.helidon.examples.employee</groupId> |
32 | | - <artifactId>helidon-examples-employee-app</artifactId> |
| 28 | + <artifactId>helidon-examples-dbclient-oracle-ucp</artifactId> |
33 | 29 | <version>1.0.0-SNAPSHOT</version> |
34 | | - <name>Helidon Examples Employee App</name> |
| 30 | + <name>Helidon Examples DbClient Oracle UCP</name> |
35 | 31 |
|
36 | 32 | <properties> |
37 | | - <mainClass>io.helidon.examples.employee.Main</mainClass> |
| 33 | + <mainClass>io.helidon.examples.dbclient.oracle.ucp.Main</mainClass> |
38 | 34 | </properties> |
39 | 35 |
|
40 | 36 | <dependencies> |
41 | 37 | <dependency> |
42 | | - <groupId>io.helidon.integrations.db</groupId> |
43 | | - <artifactId>ojdbc</artifactId> |
| 38 | + <groupId>io.helidon.webserver</groupId> |
| 39 | + <artifactId>helidon-webserver</artifactId> |
44 | 40 | </dependency> |
45 | 41 | <dependency> |
46 | | - <groupId>com.oracle.database.jdbc</groupId> |
47 | | - <artifactId>ucp</artifactId> |
| 42 | + <groupId>io.helidon.http.media</groupId> |
| 43 | + <artifactId>helidon-http-media-jsonp</artifactId> |
48 | 44 | </dependency> |
49 | 45 | <dependency> |
50 | | - <groupId>io.helidon.webserver</groupId> |
51 | | - <artifactId>helidon-webserver</artifactId> |
| 46 | + <groupId>io.helidon.config</groupId> |
| 47 | + <artifactId>helidon-config-yaml</artifactId> |
52 | 48 | </dependency> |
53 | 49 | <dependency> |
54 | | - <groupId>io.helidon.webserver.observe</groupId> |
55 | | - <artifactId>helidon-webserver-observe</artifactId> |
| 50 | + <groupId>io.helidon.dbclient</groupId> |
| 51 | + <artifactId>helidon-dbclient</artifactId> |
56 | 52 | </dependency> |
57 | 53 | <dependency> |
58 | | - <groupId>io.helidon.webserver</groupId> |
59 | | - <artifactId>helidon-webserver-static-content</artifactId> |
| 54 | + <groupId>io.helidon.dbclient</groupId> |
| 55 | + <artifactId>helidon-dbclient-jdbc</artifactId> |
60 | 56 | </dependency> |
61 | 57 | <dependency> |
62 | | - <groupId>io.helidon.http.media</groupId> |
63 | | - <artifactId>helidon-http-media-jsonb</artifactId> |
| 58 | + <groupId>io.helidon.integrations.db</groupId> |
| 59 | + <artifactId>ojdbc</artifactId> |
64 | 60 | </dependency> |
65 | 61 | <dependency> |
66 | | - <groupId>io.helidon.config</groupId> |
67 | | - <artifactId>helidon-config-yaml</artifactId> |
| 62 | + <groupId>com.oracle.database.jdbc</groupId> |
| 63 | + <artifactId>ucp17</artifactId> |
68 | 64 | </dependency> |
69 | 65 | <dependency> |
70 | | - <groupId>io.helidon.health</groupId> |
71 | | - <artifactId>helidon-health-checks</artifactId> |
| 66 | + <groupId>jakarta.json</groupId> |
| 67 | + <artifactId>jakarta.json-api</artifactId> |
72 | 68 | </dependency> |
73 | 69 | <dependency> |
74 | | - <groupId>io.helidon.webserver.observe</groupId> |
75 | | - <artifactId>helidon-webserver-observe-metrics</artifactId> |
76 | | - <scope>runtime</scope> |
| 70 | + <groupId>io.helidon.logging</groupId> |
| 71 | + <artifactId>helidon-logging-slf4j</artifactId> |
77 | 72 | </dependency> |
78 | 73 | <dependency> |
79 | | - <groupId>io.helidon.metrics</groupId> |
80 | | - <artifactId>helidon-metrics-system-meters</artifactId> |
81 | | - <scope>runtime</scope> |
| 74 | + <groupId>org.slf4j</groupId> |
| 75 | + <artifactId>jul-to-slf4j</artifactId> |
82 | 76 | </dependency> |
83 | 77 | <dependency> |
84 | | - <groupId>io.helidon.dbclient</groupId> |
85 | | - <artifactId>helidon-dbclient</artifactId> |
| 78 | + <groupId>org.slf4j</groupId> |
| 79 | + <artifactId>slf4j-simple</artifactId> |
86 | 80 | </dependency> |
87 | 81 | <dependency> |
88 | | - <groupId>io.helidon.dbclient</groupId> |
89 | | - <artifactId>helidon-dbclient-jdbc</artifactId> |
| 82 | + <groupId>org.testcontainers</groupId> |
| 83 | + <artifactId>junit-jupiter</artifactId> |
| 84 | + <scope>test</scope> |
| 85 | + </dependency> |
| 86 | + <dependency> |
| 87 | + <groupId>io.helidon.webclient</groupId> |
| 88 | + <artifactId>helidon-webclient</artifactId> |
| 89 | + <scope>test</scope> |
| 90 | + </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>io.helidon.testing</groupId> |
| 93 | + <artifactId>helidon-testing-junit5</artifactId> |
| 94 | + <scope>test</scope> |
90 | 95 | </dependency> |
91 | 96 | <dependency> |
92 | 97 | <groupId>io.helidon.webserver.testing.junit5</groupId> |
|
118 | 123 | </plugin> |
119 | 124 | </plugins> |
120 | 125 | </build> |
121 | | - |
122 | 126 | </project> |
0 commit comments