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

Make build compatiable with Gradle version 1.0-miestone-3 #109

Closed
wants to merge 1 commit 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions agent/org.linkedin.glu.agent-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ apply plugin: 'org.linkedin.release'

dependencies {
compile spec.external.linkedinUtilsCore
compile spec.external.slf4jLog4j

groovy spec.external.groovy

Expand Down
6 changes: 2 additions & 4 deletions console/org.linkedin.glu.console-webapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,12 @@ def facets = """
"""

ideaModule {
whenConfigured { module ->
['grails-app/utils', 'grails-app/controllers', 'grails-app/domain', 'grails-app/services', 'grails-app/realms', 'grails-app/taglib', 'grails-app/conf'].each {
module.sourceFolders << new org.gradle.plugins.idea.model.Path("file://\$MODULE_DIR\$/${it}")
sourceDirs +=file(it)
}
['test/unit', 'test/integration'].each {
module.testSourceFolders << new org.gradle.plugins.idea.model.Path("file://\$MODULE_DIR\$/${it}")
testSourceDirs += file(it)
}
}

withXml { root ->
// add facets
Expand Down
2 changes: 1 addition & 1 deletion provisioner/org.linkedin.glu.provisioner-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ dependencies {
compile spec.external.linkedinUtilsGroovy
groovy spec.external.groovy
testCompile spec.external.junit
testRuntime spec.external.slf4jLog4j
compile spec.external.slf4jLog4j
}
1 change: 1 addition & 0 deletions utils/org.linkedin.glu.utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ apply plugin: 'org.linkedin.release'
dependencies {
compile spec.external.linkedinUtilsCore
compile spec.external.linkedinUtilsGroovy
compile spec.external.slf4jLog4j
groovy spec.external.groovy

testCompile spec.external.junit
Expand Down