geb
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.grails.plugins</groupId> <artifactId>geb</artifactId> <version>5.0.0-M4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>org.grails.plugins</groupId> <artifactId>geb</artifactId> <version>5.0.0-M4</version> <dependencies> <dependency> <groupId>org.gebish</groupId> <artifactId>geb-spock</artifactId> <scope>compile</scope> <optional>true</optional> <version>7.0</version> </dependency> <dependency> <groupId>org.grails</groupId> <artifactId>grails-testing-support</artifactId> <scope>compile</scope> <optional>true</optional> <version>7.0.0-M3</version> </dependency> <dependency> <groupId>org.grails</groupId> <artifactId>grails-datastore-gorm</artifactId> <scope>compile</scope> <optional>true</optional> <version>9.0.0-M3</version> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>selenium</artifactId> <version>1.20.4</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-chrome-driver</artifactId> <version>4.28.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> <version>4.28.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-support</artifactId> <version>4.28.1</version> <scope>runtime</scope> <optional>true</optional> </dependency> </dependencies> <name>Grails Geb Plugin</name> <description>Provides Integration with Geb for Functional Testing</description> <url>https://github.com/grails/geb</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/grails/geb</url> <connection>scm:git@github.com:grails/geb.git</connection> <developerConnection>scm:git@github.com:grails/geb.git</developerConnection> </scm> <issueManagement> <system>Github Issues</system> <url>https://github.com/grails/geb/issues</url> </issueManagement> <developers> <developer> <id>graemerocher</id> <name>Graeme Rocher</name> </developer> <developer> <id>puneetbehl</id> <name>Puneet Behl</name> </developer> <developer> <id>sbglasius</id> <name>Søren Berg Glasius</name> </developer> <developer> <id>matrei</id> <name>Mattias Reichel</name> </developer> <developer> <id>jdaugherty</id> <name>James Daugherty</name> </developer> </developers> </project>