I'm currently trying to build REDHAWK Explorer extensions with the source on github; however, when I try to run the Maven scripts on things, I get a missing repository error:
Caused by: org.eclipse.equinox.p2.core.ProvisionException: No repository found at http://download.redhawksdr.org/nxm-rcp/releases/1.0.
I see it is a repository hosted on redhawksdr.org; is this something that should be up and isn't? I know nxm point to a http://nextmidas.techma.com/; is this an internal plugin that was developed by the Redhawk team, and, as such, is it in the repo as well?
Furthermore, which pom.xmls should I be building from?
Unfortunately, we haven't been able to host public p2 repositories. Those are placeholders for a future p2 repository.
You might be able to get around this by building all the repo's and installing them into your local maven repository.
To do this clone each of the maven repositories:
In each repository, as you've seen, you will find a releng folder.
Build by using the following command in this order:
Hopefully, in the future we will get public p2 repository and you will not longer have to do these extra steps. Sorry for the inconvenience.
The following maven pom.xml should help you build your jacorb OSGi bundle. This bundle specifies version 3.3.0 since RH 1.10 depends on that version, but you could probably modify it for your needs:
Locally install this bundle with:
In the eclipse-mil.jpeojtrs.sca/releng/pom.xml remove the reference to redhawk.sdr.org jacorb repo in the project.properties section. Remove the jacorb p2 repository from the project.repositories section.
In the target platform configuration, you'll need to use the Tycho POM first build that Eric references, that will end up looking like this (note the bolded line):
In mil.jpeojtrs.sca/plugins/idl.cf/META-INF/MANIFEST.MF, remove the bundle requirement for jacorb. The fact that it imports the COsEventChannelAdmin package should suffice since the bundle is already installed locally.
Finally, go to mil.jpeojtrs.sca/releng and run
Just remember that if you're using maven3.1 or later, you need to change the version of tycho in the POM file to 18.1
Finally, install the zip file as an archive in eclipse and you should be all caught up on your mil.jpeojtrs.sca install.
Unfortunately... this doesn't get you anywhere with regards to your original question, reasked here since I can't leave comments...