Skip to content

Commit 6f5cf55

Browse files
committed
Move jdbc to separate module
1 parent 43a19a9 commit 6f5cf55

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

modules/jdbc/build.gradle

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
plugins {
2+
id 'java-library'
3+
id 'com.github.johnrengelman.shadow' version '8.1.1'
4+
}
5+
6+
group = 'com.annimon.module'
7+
version = '1.0.0'
8+
9+
dependencies {
10+
compileOnlyApi project(":ownlang-core")
11+
12+
testImplementation platform("org.junit:junit-bom:${versions.junit}")
13+
testImplementation 'org.junit.jupiter:junit-jupiter'
14+
}
15+
16+
test {
17+
useJUnitPlatform()
18+
}

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ include 'ownlang-desktop'
66
include 'ownlang-utils'
77
include 'docs'
88

9-
final def modules = ['main', 'canvasfx', 'server']
9+
final def modules = ['main', 'canvasfx', 'jdbc', 'server']
1010

1111
for (final def module in modules) {
1212
include "modules:$module"

0 commit comments

Comments
 (0)