Skip to content

Commit

Permalink
Updated pitest. Removed junit-platform-launcher (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfvanek authored Oct 7, 2023
1 parent e8e40dd commit 049a108
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 15 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ plugins {
id("java-test-fixtures")
id("net.ltgt.errorprone") version "3.1.0"
id("com.github.spotbugs") version "5.1.3"
id("org.sonarqube") version "4.4.0.3356"
id("info.solidsoft.pitest") version "1.9.11"
id("org.gradle.test-retry") version "1.5.5"
id("org.sonarqube") version "4.4.1.3373"
id("info.solidsoft.pitest") version "1.15.0"
id("org.gradle.test-retry") version "1.5.6"
id("com.github.ben-manes.versions") version "0.48.0"
}

Expand Down
3 changes: 0 additions & 3 deletions pg-index-health-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ dependencies {
testImplementation(testFixtures(project(":pg-index-health-model")))
testImplementation(testFixtures(project(":pg-index-health-jdbc-connection")))
testImplementation(rootProject.libs.logback.classic)
testRuntimeOnly("org.junit.platform:junit-platform-launcher") {
because("required for pitest")
}

pitest(rootProject.libs.pitest.dashboard.reporter)
}
Expand Down
4 changes: 1 addition & 3 deletions pg-index-health-jdbc-connection/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ dependencies {
testImplementation(rootProject.libs.mockito.core)
testImplementation(rootProject.libs.equalsverifier)
testImplementation(rootProject.libs.awaitility)

testRuntimeOnly(rootProject.libs.postgresql)
testRuntimeOnly("org.junit.platform:junit-platform-launcher") {
because("required for pitest")
}

testFixturesImplementation(rootProject.libs.jsr305)
testFixturesImplementation(rootProject.libs.slf4j.api)
Expand Down
3 changes: 0 additions & 3 deletions pg-index-health-model/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ description = "pg-index-health-model is a set of common classes and interfaces f
dependencies {
testImplementation(rootProject.libs.equalsverifier)
testImplementation(rootProject.libs.mockito.core)
testRuntimeOnly("org.junit.platform:junit-platform-launcher") {
because("required for pitest")
}

testFixturesImplementation(rootProject.libs.jsr305)

Expand Down
2 changes: 1 addition & 1 deletion pg-index-health-testing/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
api(project(":pg-index-health-model"))
api(project(":pg-index-health-jdbc-connection"))
implementation(rootProject.libs.apache.commons.dbcp2)
implementation(platform("org.testcontainers:testcontainers-bom:1.19.0"))
implementation(platform("org.testcontainers:testcontainers-bom:1.19.1"))
implementation("org.testcontainers:testcontainers")
implementation("org.testcontainers:postgresql")
implementation(rootProject.libs.awaitility)
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ dependencyResolutionManagement {
library("logback-classic", "ch.qos.logback:logback-classic:1.4.11")
library("slf4j-api", "org.slf4j:slf4j-api:2.0.9")
library("apache-commons-dbcp2", "org.apache.commons:commons-dbcp2:2.10.0")
library("mockito-core", "org.mockito:mockito-core:5.5.0")
library("mockito-core", "org.mockito:mockito-core:5.6.0")
library("awaitility", "org.awaitility:awaitility:4.2.0")
library("apache-commons-lang3", "org.apache.commons:commons-lang3:3.13.0")
library("equalsverifier", "nl.jqno.equalsverifier:equalsverifier:3.15.2")
library("pitest-dashboard-reporter", "it.mulders.stryker:pit-dashboard-reporter:0.2.1")
version("pitest-junit5Plugin", "1.2.0")
version("pitest-core", "1.14.1")
version("pitest-core", "1.15.0")
version("checkstyle", "10.12.0")
version("pmd", "6.55.0")
version("jacoco", "0.8.10")
Expand Down

0 comments on commit 049a108

Please sign in to comment.