Stephane Gamard created SOLR-3934:
-------------------------------------
Summary: Error in Pom generation
Key: SOLR-3934
URL: https://issues.apache.org/jira/browse/SOLR-3934
Project: Solr
Issue Type: Bug
Components: Build
Affects Versions: 4.1
Environment: ant
Reporter: Stephane Gamard
Generating maven's pom with ant produces the wrong parent element for
lucene/core/src/java.
Produces:
{code:xml}
<parent>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-parent</artifactId>
<version>4.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
{code}
Should be:
{code:xml}
<parent>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-parent</artifactId>
<version>4.1-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]