Skip to content

Commit

Permalink
Changes in version 1.7.4
Browse files Browse the repository at this point in the history
------------------------
* reportng 1.5.6
* kotlin 1.9.23
* org.jetbrains.dokka 1.9.20
* selenium java 4.19.1
* selenium docker 4.19.1-20240402
  • Loading branch information
hibissscus committed Apr 24, 2024
1 parent 2ea9d30 commit a573623
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Changes in version 1.7.4
------------------------
* reportng 1.5.6
* kotlin 1.9.23
* org.jetbrains.dokka 1.9.20
* selenium java 4.19.1
* selenium docker 4.19.1-20240402


Changes in version 1.7.3
------------------------
* testng 7.5
Expand Down
12 changes: 7 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
plugins {
java
kotlin("jvm") version "1.9.22"
kotlin("jvm") version "1.9.23"
id("maven-publish")
id("java-library")
id("org.jetbrains.dokka") version "1.9.10"
id("org.jetbrains.dokka") version "1.9.20"
id("com.avast.gradle.docker-compose") version ("0.17.6")
}


group = "it.testee"
version = "1.7.3"
version = "1.7.4"


repositories {
Expand All @@ -23,11 +23,11 @@ dependencies {
// kotlin
implementation("org.jetbrains.kotlin:kotlin-stdlib")
// selenium
implementation("org.seleniumhq.selenium:selenium-java:4.17.0")
implementation("org.seleniumhq.selenium:selenium-java:4.19.1")
// testng
implementation("org.testng", "testng", "7.5")
// reportng
implementation("com.github.hibissscus:reportng:1.5.5")
implementation("com.github.hibissscus:reportng:1.5.6")
}

tasks {
Expand All @@ -45,6 +45,7 @@ tasks {
systemProperties = mapOf(
"testee.it.version" to "$version",
"testee.it.reportng.title" to "testee-e2e",
"testee.it.reportng.color" to "#f0f8ff",
"testee.it.reportng.zip" to "true",
"testee.it.reportng.slack" to "false",
"testee.it.reportng.slack.token" to "xxxx-xxxxxxxxxx-xxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx",
Expand All @@ -70,6 +71,7 @@ tasks.register<Test>("docker") {
"e2e.url" to System.getProperty("e2e.url", ""),
"testee.it.version" to "$version",
"testee.it.reportng.title" to "testee-e2e-docker",
"testee.it.reportng.color" to "#fff0f5",
"testee.it.reportng.zip" to "true",
"testee.it.reportng.slack" to "false",
"testee.it.reportng.slack.token" to "xxxx-xxxxxxxxxx-xxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx",
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ version: "3.9"
services:
selenium-hub:
container_name: selenium-hub
image: selenium/hub:4.17.0-20240123
image: selenium/hub:4.19.1-20240402
ports:
- "4444:4444"
- "4443:4443"
- "4442:4442"
environment:
- TZ=Europe/Berlin
chrome:
image: selenium/node-chrome:4.17.0-20240123
image: selenium/node-chrome:4.19.1-20240402
deploy:
replicas: 3
shm_size: 512m
Expand Down

0 comments on commit a573623

Please sign in to comment.