summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2017-09-20 01:01:31 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2017-09-20 01:01:31 +0200
commitd21daac5bb79e975706c298cdec8060746eb813e (patch)
tree07d11dc5e9813f5638f88136041080791aa7bbc3
parent39cfa9724c71796f2c16aa1ed90fbd4425540eef (diff)
Setup integration with JPA framework
This change sets up the JPA integration module which provides integration of the JPA framework with the OpenDC simulator.
-rw-r--r--opendc-integration-jpa/build.gradle3
-rw-r--r--settings.gradle1
2 files changed, 2 insertions, 2 deletions
diff --git a/opendc-integration-jpa/build.gradle b/opendc-integration-jpa/build.gradle
index 89b5740d..dd4cce8c 100644
--- a/opendc-integration-jpa/build.gradle
+++ b/opendc-integration-jpa/build.gradle
@@ -77,11 +77,10 @@ repositories {
dependencies {
compile project(':opendc-core')
- compile "io.github.microutils:kotlin-logging:1.4.6"
+ compile "org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final"
testCompile "org.junit.jupiter:junit-jupiter-api:5.0.0-RC3"
testRuntime "org.junit.jupiter:junit-jupiter-engine:5.0.0-RC3"
testCompile "org.junit.platform:junit-platform-launcher:1.0.0-RC3"
testCompile "org.slf4j:slf4j-simple:1.7.25"
- testCompile project(':opendc-stdlib')
}
diff --git a/settings.gradle b/settings.gradle
index b0370c43..0daac5d7 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -26,3 +26,4 @@ rootProject.name = "opendc-simulator"
include 'opendc-core'
include 'opendc-omega'
include 'opendc-stdlib'
+include 'opendc-integration-jpa'