Move jdbc to separate module

This commit is contained in:
aNNiMON 2024-03-03 14:32:04 +02:00
parent 43a19a96a3
commit 6f5cf55710
3 changed files with 19 additions and 1 deletions

18
modules/jdbc/build.gradle Normal file
View File

@ -0,0 +1,18 @@
plugins {
id 'java-library'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
group = 'com.annimon.module'
version = '1.0.0'
dependencies {
compileOnlyApi project(":ownlang-core")
testImplementation platform("org.junit:junit-bom:${versions.junit}")
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}

View File

@ -6,7 +6,7 @@ include 'ownlang-desktop'
include 'ownlang-utils'
include 'docs'
final def modules = ['main', 'canvasfx', 'server']
final def modules = ['main', 'canvasfx', 'jdbc', 'server']
for (final def module in modules) {
include "modules:$module"