summaryrefslogtreecommitdiff
path: root/opendc-integration-jpa/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'opendc-integration-jpa/build.gradle')
-rw-r--r--opendc-integration-jpa/build.gradle16
1 files changed, 11 insertions, 5 deletions
diff --git a/opendc-integration-jpa/build.gradle b/opendc-integration-jpa/build.gradle
index dd4cce8c..a3aa9dc8 100644
--- a/opendc-integration-jpa/build.gradle
+++ b/opendc-integration-jpa/build.gradle
@@ -34,6 +34,7 @@ buildscript {
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
+ classpath "org.jetbrains.kotlin:kotlin-noarg:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0-RC3'
}
@@ -41,6 +42,7 @@ buildscript {
apply plugin: 'java'
apply plugin: 'kotlin'
+apply plugin: 'kotlin-jpa'
apply plugin: 'org.jetbrains.dokka'
apply plugin: 'org.junit.platform.gradle.plugin'
@@ -77,10 +79,14 @@ repositories {
dependencies {
compile project(':opendc-core')
- compile "org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final"
+ compile project(':opendc-stdlib')
+ compile project(':opendc-omega')
+ compile 'org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final'
+ runtime 'org.slf4j:slf4j-simple:1.7.25'
+ runtime 'org.hibernate:hibernate-core:5.2.5.Final'
+ runtime 'mysql:mysql-connector-java:5.1.13'
- 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 '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'
}