Gradle GAE Geb integration plugin

Simple Gradle plugin that provides integration between Gradle GAE plugin and Geb browser automation framework.

License

License

Categories

Categories

Gradle Build Tools
GroupId

GroupId

org.gradle.api.plugins
ArtifactId

ArtifactId

gradle-appengine-geb-plugin
Last Version

Last Version

0.5
Release Date

Release Date

Type

Type

jar
Description

Description

Gradle GAE Geb integration plugin
Simple Gradle plugin that provides integration between Gradle GAE plugin and Geb browser automation framework.
Project URL

Project URL

https://github.com/erdi/gradle-gae-geb-plugin
Source Code Management

Source Code Management

https://github.com/erdi/gradle-gae-geb-plugin

Download gradle-appengine-geb-plugin

How to add to project

<!-- https://jarcasting.com/artifacts/org.gradle.api.plugins/gradle-appengine-geb-plugin/ -->
<dependency>
    <groupId>org.gradle.api.plugins</groupId>
    <artifactId>gradle-appengine-geb-plugin</artifactId>
    <version>0.5</version>
</dependency>
// https://jarcasting.com/artifacts/org.gradle.api.plugins/gradle-appengine-geb-plugin/
implementation 'org.gradle.api.plugins:gradle-appengine-geb-plugin:0.5'
// https://jarcasting.com/artifacts/org.gradle.api.plugins/gradle-appengine-geb-plugin/
implementation ("org.gradle.api.plugins:gradle-appengine-geb-plugin:0.5")
'org.gradle.api.plugins:gradle-appengine-geb-plugin:jar:0.5'
<dependency org="org.gradle.api.plugins" name="gradle-appengine-geb-plugin" rev="0.5">
  <artifact name="gradle-appengine-geb-plugin" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.gradle.api.plugins', module='gradle-appengine-geb-plugin', version='0.5')
)
libraryDependencies += "org.gradle.api.plugins" % "gradle-appengine-geb-plugin" % "0.5"
[org.gradle.api.plugins/gradle-appengine-geb-plugin "0.5"]

Dependencies

compile (2)

Group / Artifact Type Version
com.google.appengine : gradle-appengine-plugin jar 1.9.34
org.gebish : geb-core jar 0.13.1

Project Modules

There are no modules declared in this project.

Gradle GAE Geb plugin Build Status

This plugin is a simple integration point between Gradle GAE plugin and Geb browser automation framework. It doesn't provide any new tasks but only sets Geb's baseUrl configuration property based on Gradle GAE plugin's conventions using SystemPropertiesBuildAdapter mechanism.

Usage

IMPORTANT: Using this plugin only makes sense when Gradle GAE plugin is applied to the project. Please make sure that this is the case before applying this plugin to your project.

apply plugin: 'gae-geb'

buildscript {
	repositories {
		mavenCentral()
	}
	
	dependencies {
		classpath 'org.gradle.api.plugins:gradle-gae-geb-plugin:0.3'
	}
}

After applying the plugin you no longer need to specify baseUrl in GebConfig.groovy as it will be derived from your build settings.

Versions

Version
0.5
0.4