-
Notifications
You must be signed in to change notification settings - Fork 567
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Issue #6991 - Blocking DB Client: API, JDBC and Health Signed-off-by: Tomáš Kraus <[email protected]> * Issue #6991 - Blocking DB Client: Interceptors API and initial implementation in JDBC Signed-off-by: Tomas Kraus <[email protected]> * Issue #6991 - Blocking DB Client: Tracing support Signed-off-by: Tomas Kraus <[email protected]> * Issue #6991 - Blocking DB Client: Common metrics module Signed-off-by: Tomas Kraus <[email protected]> * - Fold dbclient-common into dbclient - Implement dbclient-mongodb - Re-work indexed/named parameters - Convergence between DbClientContext and DbClientExecuteContext - Generalized intercepted executions - Removed package-private factory methods in favor of constructors - Added javadocs - Copyright and checkstyle fixes * add missing newline * - Fix LRA - Fix examples/employee-app - Fix examples/dbclient * - Fix spotbugs errors - Add static factory to MongoDbClientBuilder * - Add metrics-jdbc - Add jsonp - Remove change in reactive/dbclient/jdbc * Add dbclient tests * - Rename io.helidon.dbclient.DbMapperProvider to io.helidon.dbclient.DbMapperProviderImpl to avoid confusion - Fix module-info to have uses io.helidon.dbclient.spi.DbMapperProvider - Fix connection close for transaction statements * integration tests (app) * - Fix copyright years - Consistent naming (DB Client -> Database Client) - Minize occurrences of the term "Pokemon" and use {@code Pokemon} when required. * Testing work. * Update maven-javadoc-plugin to 3.5.0 to get passed https://issues.apache.org/jira/browse/MJAVADOC-677 * Rebased on main, fixes to dbclient metrics Signed-off-by: Tomas Langer <[email protected]> --------- Signed-off-by: Tomáš Kraus <[email protected]> Signed-off-by: Tomas Kraus <[email protected]> Signed-off-by: Tomas Langer <[email protected]> Co-authored-by: Romain Grecourt <[email protected]> Co-authored-by: Tomas Langer <[email protected]>
- Loading branch information
1 parent
9327495
commit 48f0d4a
Showing
361 changed files
with
25,107 additions
and
15,048 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2019, 2023 Oracle and/or its affiliates. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
|
||
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>io.helidon.dbclient</groupId> | ||
<artifactId>helidon-dbclient-project</artifactId> | ||
<version>4.0.0-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<artifactId>helidon-dbclient</artifactId> | ||
<name>Helidon Database Client API</name> | ||
<description>Helidon Database Client API</description> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>io.helidon.common</groupId> | ||
<artifactId>helidon-common-config</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.helidon.common</groupId> | ||
<artifactId>helidon-common-context</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.helidon.common</groupId> | ||
<artifactId>helidon-common-mapper</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.helidon.common.features</groupId> | ||
<artifactId>helidon-common-features-api</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.hamcrest</groupId> | ||
<artifactId>hamcrest-all</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
Oops, something went wrong.