Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to 2.2.0 #7

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion application.properties
@@ -1,6 +1,6 @@
#Grails Metadata file
#Thu Apr 26 19:44:05 IST 2012
app.grails.version=2.0.3
app.grails.version=2.2.2
app.name=geb-example-grails
app.servlet.version=2.4
app.version=0.1
64 changes: 30 additions & 34 deletions grails-app/conf/BuildConfig.groovy
Expand Up @@ -15,44 +15,40 @@ grails.project.dependency.resolution = {
}
log "warn" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
checksums true // Whether to verify checksums on resolve

def gebVersion = "0.7.0"
def seleniumVersion = "2.21.0"

repositories {
grailsPlugins()
grailsHome()
grailsCentral()
mavenLocal()
mavenCentral()

// For Geb snapshot
mavenRepo "https://nexus.codehaus.org/content/repositories/snapshots"
}
dependencies {
test("org.seleniumhq.selenium:selenium-htmlunit-driver:$seleniumVersion") {
exclude "xml-apis"
}
test("org.seleniumhq.selenium:selenium-chrome-driver:$seleniumVersion")
test("org.seleniumhq.selenium:selenium-firefox-driver:$seleniumVersion")

// You usually only need one of these, but this project uses both
test "org.codehaus.geb:geb-spock:$gebVersion"
test "org.codehaus.geb:geb-junit4:$gebVersion"
}
plugins {
def gebVersion = '0.9.0'
def seleniumVersion = '2.32.0'
def spockVersion = '0.7'

repositories {
grailsPlugins()
grailsHome()
grailsCentral()
mavenLocal()
mavenCentral()

// For Geb snapshot
// mavenRepo "https://nexus.codehaus.org/content/repositories/snapshots"
}
dependencies {
test("org.seleniumhq.selenium:selenium-chrome-driver:$seleniumVersion")
test("org.seleniumhq.selenium:selenium-firefox-driver:$seleniumVersion")

// You usually only need one of these, but this project uses both
test "org.gebish:geb-spock:$gebVersion"
test "org.gebish:geb-junit4:$gebVersion"
test "org.spockframework:spock-grails-support:0.7-groovy-2.0"
}
plugins {
runtime ":hibernate:$grailsVersion"
runtime ":jquery:1.7.1"
runtime ":resources:1.1.6"

build ":tomcat:$grailsVersion"

test ":geb:0.6.3"
test ":spock:0.6"

// Uncomment these (or add new ones) to enable additional resources capabilities
//runtime ":zipped-resources:1.0"
//runtime ":cached-resources:1.0"
//runtime ":yui-minify-resources:0.1.4"
}
}
test ":geb:$gebVersion"
test(":spock:$spockVersion") {
exclude "spock-grails-support"
}
}
}