Volker Lamp created TAP5-2798: --------------------------------- Summary: Move selenium-java and selenium-leg-rc from api to testImplementation Key: TAP5-2798 URL: https://issues.apache.org/jira/browse/TAP5-2798 Project: Tapestry 5 Issue Type: Dependency upgrade Components: tapestry-webresources Affects Versions: 5.8.7, 5.8.6, 5.8.5, 5.8.4, 5.8.3 Reporter: Volker Lamp
TAP5-2744 / commit [d879baba01a5e34d78d7f50ce7bb045728431b9e|https://github.com/apache/tapestry-5/commit/d879baba01a5e34d78d7f50ce7bb045728431b9e] changed the dependencies on {{selenium-java}} and {{{}selenium-leg-rc{}}}, respectively, from {{testImplementation}} to {{{}api{}}}. This causes numerous unneccesary transitive dependencies in the runtime classpath for users of {{{}tapestry-webresources{}}}. This issue is about avoiding unnecessary dependencies in the runtime classpath for users of {{tapestry-webresources}}. Until this issue is fixed, a workaround for users is to exclude those dependencies like so (Gradle): {code:groovy} runtimeOnly ('org.apache.tapestry:tapestry-webresources:5.8.3') { exclude group: 'org.seleniumhq.selenium', module: 'selenium-java' exclude group: 'org.seleniumhq.selenium', module: 'selenium-leg-rc' } {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)