I am getting an error as below:

For dependency Dependency {groupId=weblogic, artifactId=webservices, version=9.2, type=jar}: system- scoped dependency must specify an absolute path system Path

Not sure what is wrong. I have the environment variable configured which I am using in pom.xml

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

When using system scope you have to provide an absolute path to the dependency (as opposed to any other dependencies, which are searched in Maven repositories). See System Dependencies in Introduction to the Dependency Mechanism.

Example:

<dependency>
  <groupId>javax.sql</groupId>
  <artifactId>jdbc-stdext</artifactId>
  <version>2.0</version>
  <scope>system</scope>
  <systemPath>${java.home}/lib/rt.jar</systemPath>
</dependency>

Why don't you just install your third-party artifact in your local/company repository?

EDIT: If you have systemPath defined but suspect that environment variable is not resolved, you will get the following error (note the presence of variable in the path):

The project ... has 1 error
'dependencies.dependency.systemPath' for weblogic:webservices:jar must specify an absolute path but is ${env.BEA_HOME}/lib/xyz.jar @ line ...

But if Maven discovers the variable and resolves it properly, the error message quoted above will contain already resolved directory (not a placeholder). Tested on Ubuntu/Maven 3.

link|improve this answer
Thank for the quick reply, I have a system path configured similar to the one above. But the problem I think now is that somehow the environment varable is not resolved. I have it like this: ${env.BEA_HOME}/lib/xyz.jar and I have BEA_HOME configured as an environment variable. But still getting error. I am working on a windows 7 box if that helps. – sab Jul 1 '11 at 16:19
See my edit, maybe it will help you. – Tomasz Nurkiewicz Jul 1 '11 at 16:25
feedback

Can you post your 'Dependency' element from the pom?

Guessing that it's of scope 'system' and that there's a path in there, and that path is a relative path (eg '../../someJar.jar') instead of an absolute path (eg /opt/someDir/someJar.jar).

Maven needs an absolute path.

As a side note, you might want to look in to creating a local shared repository for non-public shared jars and steer away from the 'system' scope. System scope can bite you on the rear when the build is done in other environments.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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