Skip to content

Commit

Permalink
Added sqllite
Browse files Browse the repository at this point in the history
We can use this or derby or whichever method is chosen. just getting things done.

Signed-off-by: GaleForce <ZachGale89@gmail.com>
  • Loading branch information
GaleForce89 committed Mar 7, 2018
1 parent 1c7bb30 commit 0132340
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ buildscript {
classpath "com.github.jengelman.gradle.plugins:shadow:2.0.2"
classpath "com.google.googlejavaformat:google-java-format:1.5"
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.1.0'
classpath 'org.xerial:sqlite-jdbc:3.21.0.1'
}
}

Expand All @@ -54,7 +55,8 @@ repositories {
//Separate test compile dependancies
dependencies {
testCompile(
'org.junit.jupiter:junit-jupiter-api:5.1.0'
'org.junit.jupiter:junit-jupiter-api:5.1.0',
'org.xerial:sqlite-jdbc:3.21.0.1'
)
testRuntime(
'org.junit.jupiter:junit-jupiter-engine:5.1.0'
Expand All @@ -63,8 +65,9 @@ dependencies {

//separate compile dependencies
dependencies {
compile("org.controlsfx:controlsfx:9.0.0")
//compile("org.controlsfx:controlsfx:9.0.0")
compile 'com.google.googlejavaformat:google-java-format:1.5'
compile 'org.xerial:sqlite-jdbc:3.21.0.1'
}

//set wrapper to 4.6
Expand Down
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Tue Mar 06 19:59:51 CST 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip

0 comments on commit 0132340

Please sign in to comment.