Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] No dependencies found when building a eclipse-repository packaging using dependencies hosted in Nexus

Hi,

I have a question related to how to build an eclipse-repository using osgui bundles which are hosted in our Nexus repository. 

To do this, I've tried to use the pomDependencies=consider configuration in the target-platform-configuration plugin in my parent pom. I have also specified the dependencies in a dependencies tag. Then, in the category file I have 

<?xml version="1.0" encoding="UTF-8"?>
<site>
      <category name="org.mule.tooling.servers.ee"/>
   </feature>
   <category-def name="org.mule.tooling.servers.ee" label="Studio Runtimes">
      <description>
         Studio Runtimes
      </description>
   </category-def>
</site>

But not tuck, it fails. it's like it's not finding the dependency. This error is thrown

No solution found because the problem is unsatisfiable.]
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:167)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:584)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:216)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:160)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)

Any ideas?

Thanks

Back to the top