mirror of
https://github.com/jlengrand/helidon.git
synced 2026-03-10 08:21:17 +00:00
126 lines
4.5 KiB
XML
126 lines
4.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright (c) 2019, 2020 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>io.helidon.applications</groupId>
|
|
<artifactId>helidon-se</artifactId>
|
|
<version>2.0.3-SNAPSHOT</version>
|
|
<relativePath>../../../applications/se/pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>helidon-examples-dbclient-jdbc</artifactId>
|
|
<name>Helidon Examples DB Client JDBC</name>
|
|
|
|
<properties>
|
|
<mainClass>io.helidon.examples.dbclient.jdbc.JdbcExampleMain</mainClass>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.helidon.health</groupId>
|
|
<artifactId>helidon-health</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.metrics</groupId>
|
|
<artifactId>helidon-metrics</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.tracing</groupId>
|
|
<artifactId>helidon-tracing</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.tracing</groupId>
|
|
<artifactId>helidon-tracing-zipkin</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.dbclient</groupId>
|
|
<artifactId>helidon-dbclient-jdbc</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.dbclient</groupId>
|
|
<artifactId>helidon-dbclient-tracing</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.dbclient</groupId>
|
|
<artifactId>helidon-dbclient-metrics</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.dbclient</groupId>
|
|
<artifactId>helidon-dbclient-metrics-jdbc</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.dbclient</groupId>
|
|
<artifactId>helidon-dbclient-health</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.dbclient</groupId>
|
|
<artifactId>helidon-dbclient-jsonp</artifactId>
|
|
</dependency>
|
|
<!--<dependency>-->
|
|
<!--<groupId>mysql</groupId>-->
|
|
<!--<artifactId>mysql-connector-java</artifactId>-->
|
|
<!--</dependency>-->
|
|
<dependency>
|
|
<groupId>io.helidon.integrations.db</groupId>
|
|
<artifactId>h2</artifactId>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>io.helidon.integrations.db</groupId>-->
|
|
<!-- <artifactId>ojdbc</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-jdk14</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.media</groupId>
|
|
<artifactId>helidon-media-jsonb</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.config</groupId>
|
|
<artifactId>helidon-config-yaml</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.examples.dbclient</groupId>
|
|
<artifactId>helidon-examples-dbclient-common</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-libs</id>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|