Remove Hikari from 3rd party hints

We now use the metadata included in from graalvm-reachability-metadata.

Closes gh-87
This commit is contained in:
Moritz Halbritter
2022-08-22 09:43:21 +02:00
parent 66d0fbc93f
commit 664634067a
27 changed files with 1 additions and 76 deletions

View File

@@ -8,7 +8,6 @@ plugins {
dependencies {
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
implementation("org.springframework.boot:spring-boot-starter-data-jdbc")
implementation(project(":aot-smoke-test-third-party-hints"))
runtimeOnly("org.postgresql:postgresql")
testImplementation("org.springframework.boot:spring-boot-starter-test")

View File

@@ -1,12 +1,9 @@
package com.example.data.jdbc.postgresql;
import org.springframework.aot.smoketest.thirdpartyhints.HikariRuntimeHints;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ImportRuntimeHints;
@SpringBootApplication
@ImportRuntimeHints(HikariRuntimeHints.class)
public class DataJdbcPostgreSQLApplication {
public static void main(String[] args) throws InterruptedException {