I want to use Apache Camel 2.14.0 in my project, and specifically use the Quickfixj component. However, I want to make some changes to the camel-quickfix component, and deploy those changes to our local Nexus repo for use. The changes would meet certain functionality we are looking for our FIX Engine.
However, the question I have is, in the {local-git-repo}/camel/components/camel-quickfix/pom.xml, I see the following:
<parent>
<groupId>org.apache.camel</groupId>
<artifactId>components</artifactId>
<version>2.14.0</version>
</parent>
<artifactId>camel-quickfix</artifactId>
<packaging>bundle</packaging>
<name>Camel :: QuickFIX/J</name>
<description>Camel QuickFIX/J support</description>
Usually, what I would do is change the version to say, 2.14.1, and then build and deploy to our local nexus repo, so we can reuse the modified component in our local projects. However, with this, it seems to be referring to the parent pom.
How could I go about modifying this component, and yet still have it refer to the camel-core 2.14.0 version and its dependencies?
Or could I just build it as 2.14.0, and hope that when my maven project runs, it picks up the artifact from my thirdparty repo, and not the one from the apache mirror?
Please help, if you are a maven expert :)