Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
DineshKumarRA committed Oct 7, 2024
1 parent 3d361dd commit 7a23323
Show file tree
Hide file tree
Showing 13 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion allure-awaitility/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ description = "Allure Awaitlity Integration"

val agent: Configuration by configurations.creating

val awaitilityVersion = "4.2.1"
val awaitilityVersion = "4.2.2"

dependencies {
agent("org.aspectj:aspectjweaver")
Expand Down
2 changes: 1 addition & 1 deletion allure-citrus/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description = "Allure Citrus Integration"

val citrusVersion = "2.8.0"
val citrusVersion = "3.4.1"

dependencies {
api(project(":allure-java-commons"))
Expand Down
4 changes: 2 additions & 2 deletions allure-cucumber7-jvm/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
description = "Allure CucumberJVM 7.0"

val cucumberVersion = "7.18.1"
val cucumberGherkinVersion = "28.0.0"
val cucumberVersion = "7.20.0"
val cucumberGherkinVersion = "29.0.0"

dependencies {
api(project(":allure-java-commons"))
Expand Down
4 changes: 2 additions & 2 deletions allure-grpc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ description = "Allure gRPC Integration"

val agent: Configuration by configurations.creating

val grpcVersion = "1.57.2"
val protobufVersion = "4.27.2"
val grpcVersion = "1.68.0"
val protobufVersion = "4.28.2"

dependencies {
agent("org.aspectj:aspectjweaver")
Expand Down
2 changes: 1 addition & 1 deletion allure-httpclient5/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description = "Allure Apache HttpClient5 Integration"

val httpClient5Version = "5.3.1";
val httpClient5Version = "5.4";

dependencies {
api(project(":allure-attachments"))
Expand Down
2 changes: 1 addition & 1 deletion allure-jbehave5/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description = "Allure JBehave 5 Integration"

val jbehaveVersion = "5.1.1"
val jbehaveVersion = "5.2.0"

dependencies {
api(project(":allure-java-commons"))
Expand Down
6 changes: 3 additions & 3 deletions allure-jooq/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description = "Allure JOOQ Integration"

val jooqVersion = "3.19.10"
val jooqVersion = "3.19.13"

dependencies {
api(project(":allure-java-commons"))
Expand All @@ -11,12 +11,12 @@ dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.mockito:mockito-core")
testImplementation("org.slf4j:slf4j-simple")
testImplementation(platform("io.zonky.test.postgres:embedded-postgres-binaries-bom:16.2.0"))
testImplementation(platform("io.zonky.test.postgres:embedded-postgres-binaries-bom:17.0.0"))
testImplementation(project(":allure-assertj"))
testImplementation(project(":allure-java-commons-test"))
testImplementation(project(":allure-junit-platform"))
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.postgresql:postgresql:42.7.3")
testRuntimeOnly("org.postgresql:postgresql:42.7.4")
}

tasks.compileJava {
Expand Down
2 changes: 1 addition & 1 deletion allure-jsonunit/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description = "Allure JsonUnit Integration"

val jsonUnitVersion = "2.35.0"
val jsonUnitVersion = "3.4.1"

dependencies {
api(project(":allure-attachments"))
Expand Down
2 changes: 1 addition & 1 deletion allure-selenide/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description = "Allure Selenide Integration"

val selenideVersion = "7.4.1"
val selenideVersion = "7.5.1"

dependencies {
api(project(":allure-java-commons"))
Expand Down
2 changes: 1 addition & 1 deletion allure-testng/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description = "Allure TestNG Integration"

val testNgVersion = "6.14.3"
val testNgVersion = "7.10.2"

dependencies {
api(project(":allure-java-commons"))
Expand Down
28 changes: 14 additions & 14 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ val spotlessDtr by extra("$qualityConfigsDir/spotless")
val libs = subprojects.filterNot { it.name in "allure-bom" }

tasks.withType(Wrapper::class) {
gradleVersion = "8.5"
gradleVersion = "8.10.2"
}

plugins {
Expand Down Expand Up @@ -141,36 +141,36 @@ configure(libs) {
apply(plugin = "java")
apply(plugin = "java-library")

val orgSlf4jVersion = "2.0.13"
val assertJVersion = "1.9.22.1"
val orgSlf4jVersion = "2.0.16"
val aspectJVersion = "1.9.22.1"

dependencyManagement {
imports {
mavenBom("com.fasterxml.jackson:jackson-bom:2.17.2")
mavenBom("org.junit:junit-bom:5.10.3")
mavenBom("com.fasterxml.jackson:jackson-bom:2.18.0")
mavenBom("org.junit:junit-bom:5.11.2")
}
dependencies {
dependency("com.github.spotbugs:spotbugs:4.8.6")
dependency("com.github.tomakehurst:wiremock:3.0.1")
dependency("com.google.inject:guice:7.0.0")
dependency("com.google.testing.compile:compile-testing:0.21.0")
dependency("com.puppycrawl.tools:checkstyle:10.17.0")
dependency("com.puppycrawl.tools:checkstyle:10.18.2")
dependency("com.squareup.retrofit2:retrofit:2.11.0")
dependency("commons-io:commons-io:2.16.1")
dependency("commons-io:commons-io:2.17.0")
dependency("io.github.benas:random-beans:3.9.0")
dependency("io.github.glytching:junit-extensions:2.6.0")
dependency("javax.annotation:javax.annotation-api:1.3.2")
dependency("net.sourceforge.pmd:pmd-java:7.4.0")
dependency("org.apache.commons:commons-lang3:3.15.0")
dependency("org.aspectj:aspectjrt:${assertJVersion}")
dependency("org.aspectj:aspectjweaver:${assertJVersion}")
dependency("net.sourceforge.pmd:pmd-java:7.6.0")
dependency("org.apache.commons:commons-lang3:3.17.0")
dependency("org.aspectj:aspectjrt:${aspectJVersion}")
dependency("org.aspectj:aspectjweaver:${aspectJVersion}")
dependency("org.assertj:assertj-core:3.26.3")
dependency("org.freemarker:freemarker:2.3.33")
dependency("org.grpcmock:grpcmock-junit5:0.8.0")
dependency("org.grpcmock:grpcmock-junit5:0.14.0")
dependency("org.hamcrest:hamcrest:3.0")
dependency("org.jboss.resteasy:resteasy-client:6.2.9.Final")
dependency("org.jboss.resteasy:resteasy-client:6.2.10.Final")
dependency("org.mock-server:mockserver-netty:5.15.0")
dependency("org.mockito:mockito-core:5.12.0")
dependency("org.mockito:mockito-core:5.14.1")
dependency("org.slf4j:slf4j-api:${orgSlf4jVersion}")
dependency("org.slf4j:slf4j-nop:${orgSlf4jVersion}")
dependency("org.slf4j:slf4j-simple:${orgSlf4jVersion}")
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
14 changes: 7 additions & 7 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,21 +48,21 @@ pluginManagement {
plugins {
id("com.diffplug.spotless") version "6.25.0"
id("io.github.goooler.shadow") version "8.1.8"
id("com.gradle.enterprise") version "3.17.5"
id("com.gradle.enterprise") version "3.18.1"
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
id("io.qameta.allure-adapter") version "2.11.2"
id("io.qameta.allure-aggregate-report") version "2.11.2"
id("io.qameta.allure-download") version "2.11.2"
id("io.qameta.allure-report") version "2.11.2"
id("io.qameta.allure-adapter") version "2.12.0"
id("io.qameta.allure-aggregate-report") version "2.12.0"
id("io.qameta.allure-download") version "2.12.0"
id("io.qameta.allure-report") version "2.12.0"
id("io.spring.dependency-management") version "1.1.6"
id("com.google.protobuf") version "0.9.4"
id("com.github.spotbugs") version "6.0.19"
id("com.github.spotbugs") version "6.0.24"
kotlin("jvm") version "2.0.0"
}
}

plugins {
id("com.gradle.develocity") version "3.17.5" apply false
id("com.gradle.develocity") version "3.18.1" apply false
}

val isCiServer = System.getenv().containsKey("CI")
Expand Down

0 comments on commit 7a23323

Please sign in to comment.