Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When specifying Gradle project dependencies, can I avoid using a full absolute project name and use a relative one instead? (i.e. in my example I don't want to explicitly specify :app-a when referencing :domain-a)

//Directory structure
app-a/
  domain-a/
    build.gradle
  webapp-a/
    build.gradle

WebApp-A build.gradle:

apply plugin: 'java'

//Build.gradle for webapp-a
dependencies {

  // Works
  compile project(':app-a:domain-a')

  //Doesn't work
  compile project(projectDir.path + '/../domain-a/')

  //Doesn't work
  compile findProject('../domain-a')

  //Doesn't work
  compile project(':domain-a')
}
share|improve this question
compile project(':' + parent.name + ':domain-a') works but seems hacky – vicjugador Mar 16 '12 at 21:32

1 Answer

up vote 2 down vote accepted

Relative names are a bad idea since they make your project depend on the wider project it is located in. That should not be the case. I suggest to avoid using the relative name.

In terms of retrieving the parent project as a dependency this would be done via the default being the parent directory or that failing it would use the usual dependency resolution mechanism, which uses the coordinates (groupId, artifactId and version) and looks the artifact up in the local repository..

share|improve this answer
Yep .. I generally strive for relative paths/names ... but this seems like a bad idea in this case (and judging by other gradle build scripts that I've found). – vicjugador Mar 16 '12 at 23:14
Whether or not they are a good idea, I don't get why relative paths would be any more project dependent than absolute paths? What do you suggest instead? – Stiggler Nov 8 '12 at 23:28
It is better to have the projects be independent and exchange the dependencies/build outputs like any other dependency via a repository manager or at minimum your local repository. – Manfred Moser Nov 8 '12 at 23:33
Good point, then I understand what you mean. Thanks for clarifying! – Stiggler Nov 9 '12 at 21:00
Still, even without the relative paths, this answer does not answer the problem of referring to a parent project as a dependency. – djangofan Dec 8 '12 at 18:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.