This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy-geb.git
The following commit(s) were added to refs/heads/master by this push:
new 5317a3a5 minor refactor: use later gradle syntax
5317a3a5 is described below
commit 5317a3a5eef57b7db2e902c109ce8012da5f0b0b
Author: Paul King <[email protected]>
AuthorDate: Wed Jan 15 10:29:07 2025 +1000
minor refactor: use later gradle syntax
---
module/geb-waiting/geb-waiting.gradle | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/module/geb-waiting/geb-waiting.gradle
b/module/geb-waiting/geb-waiting.gradle
index 95543fb4..4b8fde9b 100644
--- a/module/geb-waiting/geb-waiting.gradle
+++ b/module/geb-waiting/geb-waiting.gradle
@@ -25,13 +25,14 @@ dependencies {
// We list it as one so that it becomes a transitive dependency of
geb-core and therefore
// making it available at compile time of client code, assuming that their
dependency management
// system makes transitive compile dependencies first class compile
dependencies.
- api project(":module:geb-implicit-assertions")
- api project(":module:geb-exceptions")
+ api project(':module:geb-implicit-assertions')
+ api project(':module:geb-exceptions')
- testImplementation project(":internal:test-support")
+ testImplementation project(':internal:test-support')
+ testRuntimeOnly libs.junit.platform.launcher
}
publishing.publications.main.pom {
- name = "Geb Waiting"
- description = "Geb (pronounced \"jeb\") waiting module."
+ name = 'Geb Waiting'
+ description = 'Geb (pronounced "jeb") waiting module.'
}
\ No newline at end of file