diff --git a/settings.gradle b/settings.gradle index d441882..9816c76 100644 --- a/settings.gradle +++ b/settings.gradle @@ -26,4 +26,5 @@ include 'spring-cloud-gateway' include 'spring-rest-template-log' include 'json-utils' include 'spring-data-envers-conditional' +include 'spring-data-jdbc-client' diff --git a/spring-data-jdbc-client/src/main/resources/schema.sql b/spring-data-jdbc-client/src/main/resources/schema.sql new file mode 100644 index 0000000..c14fe1f --- /dev/null +++ b/spring-data-jdbc-client/src/main/resources/schema.sql @@ -0,0 +1 @@ +create table my_data(id integer, name varchar(255)); \ No newline at end of file