Skip to content
This repository was archived by the owner on Jun 2, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions GwtGrailsPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import org.codehaus.groovy.grails.plugins.gwt.DefaultGwtServiceInterfaceGenerato
import org.codehaus.groovy.grails.web.plugins.support.WebMetaUtils

class GwtGrailsPlugin {
def version = "1.0.3"
def version = "1.0.3-ABZ"
def grailsVersion = "2.0 > *"
def title = "The Google Web Toolkit for Grails."
def description = """\
Expand All @@ -31,7 +31,7 @@ requests.
def documentation = "http://simplicityitself.github.com/grails-gwt/guide/"
def scm = [url:"https://github.com/simplicityitself/grails-gwt"]

def dependsOn = [extendedDependencyManager: "0.5.5"]
def dependsOn = [extendedDependencyManager: "0.5.5-ABZ"]

def license = "APACHE"

Expand Down
11 changes: 10 additions & 1 deletion grails-app/conf/BuildConfig.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ grails.project.dependency.resolution = {
repositories {
grailsCentral()
mavenCentral()
mavenRepo("http://code.abz-reporting.com:8081/artifactory/plugins-release") {
auth([
username: grailsSettings.config.abzArtifactory.username,
password: grailsSettings.config.abzArtifactory.password
])

updatePolicy "always"
}

}
dependencies {
test ("org.spockframework:spock-grails-support:0.7-groovy-2.0") { export = false }
Expand All @@ -17,7 +26,7 @@ grails.project.dependency.resolution = {
plugins {
test(":spock:0.7") { export = false }
build (":release:3.0.0", ':rest-client-builder:1.0.3') { export = false }
build ":extended-dependency-manager:0.5.5"
build ":extended-dependency-manager:0.5.5-ABZ"
runtime ":resources:1.2"
}
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/_ClasspathHandling.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def maybeUseGwtHomeLibs(classLoader) {
if(getBinding().variables.containsKey("gwtHome") && gwtHome) {
def gwtHomeFile = new File(gwtHome)
if (gwtHomeFile.exists()) {
println "Using the GWT installation at ${gwtHome.absolutePath}"
println "Using the GWT installation at ${gwtHomeFile.absolutePath}"
// Update the dependency lists.
new File(gwtHome).eachFileMatch(~/^gwt-(dev.*|user.*)\.jar$/) { File f ->
grailsSettings.providedDependencies << f
Expand Down