Skip to content

Commit

Permalink
Merge branch 'snapshot' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Nov 2, 2022
2 parents 9c62842 + 7334809 commit e11a90f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion midpoint-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "com.evolveum.midpoint.studio"
version = "4.4"
version = "4.6.0"

dependencies {
api(libs.common) {
Expand All @@ -25,6 +25,11 @@ dependencies {
testRuntimeOnly(libs.jupiter.engine)
}

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

tasks.getByName<Test>("test") {
useJUnitPlatform()
}

0 comments on commit e11a90f

Please sign in to comment.