-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
30 lines (25 loc) · 1.17 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
plugins {
id 'java'
}
repositories {
mavenCentral()
}
ext.hibernateVersion = "6.1.2.Final"
ext.blazePersistenceVersion = "1.6.7"
dependencies {
testImplementation "org.hibernate.orm:hibernate-core:${hibernateVersion}"
testImplementation "org.hibernate.orm:hibernate-testing:${hibernateVersion}"
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.postgresql:postgresql:42.3.3'
testRuntimeOnly 'org.apache.logging.log4j:log4j-core:2.17.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testImplementation "com.blazebit:blaze-persistence-core-api-jakarta:${blazePersistenceVersion}"
testImplementation "com.blazebit:blaze-persistence-entity-view-api-jakarta:${blazePersistenceVersion}"
testRuntimeOnly "com.blazebit:blaze-persistence-core-impl-jakarta:${blazePersistenceVersion}"
testRuntimeOnly "com.blazebit:blaze-persistence-entity-view-impl-jakarta:${blazePersistenceVersion}"
testRuntimeOnly "com.blazebit:blaze-persistence-integration-hibernate-6.0:${blazePersistenceVersion}"
}
test {
useJUnitPlatform()
}