Hi All,
I am new to maven. I want to use it to get some kind of versioning system
going for our multi-project application.
So far everything went smooth, but now i'm getting to the point where i want
to build jars for single projects which depend on other projects. My
question is:

how do i declare a dependency on another project instead of on a jar-file?

it seems to me maven is always looking for jars, which cant be built because
other jars are missing to compile and package them:

Compiler output:
Missing:
----------
1) net.tvrl.:burancore2:jar:0.1.1.1


with POM entry:

    <dependency>
      <groupId>net.tvrl</groupId>
      <artifactId>burancore2</artifactId>
      <version>0.1.1.1</version>
    </dependency>


Of Course the Compiler cant find that jar, because it hasnt been created
yet. To create it, the burancore is dependent on other jars, which
themselves don't exist.
frustrating.
Can anyone help?

Thx


-- 
View this message in context: 
http://www.nabble.com/Dependency-understanding-problem-tf4677961s177.html#a13365897
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to