Skip to content

Commit

Permalink
Add dependencies needed for Hibernate ORM and SQLite dialect
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle committed Aug 19, 2017
1 parent c7953c7 commit 7f5e241
Show file tree
Hide file tree
Showing 4 changed files with 387 additions and 8 deletions.
12 changes: 11 additions & 1 deletion .idea/modules/com.kylewill_main.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 13 additions & 3 deletions .idea/modules/com.kylewill_test.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ sourceCompatibility = 1.8

repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}

dependencies {
compile group: 'org.hibernate.dialect', name: 'sqlite-dialect', version: '0.1.0'
compile 'com.github.gwenn:sqlite-dialect:master'
compile group: 'org.hibernate', name: 'hibernate-core', version: '5.2.10.Final'
compile group: 'org.xerial', name: 'sqlite-jdbc', version: '3.20.0'
compile group: 'org.hamcrest', name: 'hamcrest-core', version: '1.3'
testCompile group: 'junit', name: 'junit', version: '4.12'
Expand Down
Loading

0 comments on commit 7f5e241

Please sign in to comment.