Skip to content

Commit

Permalink
chore: update deps && jdk 17 only
Browse files Browse the repository at this point in the history
  • Loading branch information
ydylla committed Jul 3, 2024
1 parent a4b273b commit 434fe95
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
17 changes: 8 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,32 @@ plugins {
description = "Utilities for Geb-based browser tests of Tapestry applications"

group = "de.eddyson"
version = "0.48.0"
version = "0.49.0"

repositories {
mavenCentral()
}

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

withSourcesJar()
}

ext.versions = [
tapestry: '5.8.3',
jetty: '12.0.4'
tapestry: '5.8.6',
jetty: '12.0.10'
]

dependencies {
implementation "org.apache.tapestry:tapestry-core:$versions.tapestry"
implementation "org.eclipse.jetty:jetty-server:$versions.jetty"
implementation "org.eclipse.jetty.ee8:jetty-ee8-webapp:$versions.jetty" // servlet 4.x
implementation "org.gebish:geb-spock:6.0"
implementation "org.seleniumhq.selenium:selenium-support:4.15.0"
implementation "org.gebish:geb-spock:7.0"
implementation "org.seleniumhq.selenium:selenium-support:4.22.0"

testImplementation "io.github.bonigarcia:webdrivermanager:5.6.2"
testImplementation "org.seleniumhq.selenium:selenium-firefox-driver:4.15.0"
testImplementation "org.seleniumhq.selenium:selenium-firefox-driver:4.22.0"
testImplementation "org.tynamo:tapestry-resteasy:0.7.0"
}

Expand Down
2 changes: 0 additions & 2 deletions src/test/groovy/GebConfig.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import io.github.bonigarcia.wdm.WebDriverManager
import org.openqa.selenium.firefox.FirefoxDriver

reportsDir = "build/reports/geb"
Expand All @@ -7,7 +6,6 @@ baseUrl = "http://localhost:${System.getProperty("jettyPort")}/"
environments {
"firefox" {
driver = {
WebDriverManager.firefoxdriver().setup()
new FirefoxDriver()
}
}
Expand Down

0 comments on commit 434fe95

Please # to comment.