Hi there
In core/pom.xml there is no version tag for:
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers</artifactId>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
</dependency>
my experience with maven is fairly limited. So, my question is:
1) How does maven resolve to look for 2.9.0-SNAPSHOT version for these
two artifacts? Note that I only have the maven trunk checked out. I do
not have the lucene project checked out.
2) Of course 2.9.0-SNAPSHOT artifacts do not exist in the central
repository. So the build fails. I have to explicitly add the version tag
for 2.9.0. Is there a way to avoid the build failure without adding
version tags?
Adil