Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipse-dev] Confirm that Tycho can't manage BOTH p2 and Maven artifacts?



On 01/18/2016 11:01 PM, Max Rydahl Andersen wrote:
The answer is that it depends.

Tycho either can be driven by a plugin manifest or Pom.xml to resolve its p2 dependencies and here I believe it is true - it has to be either/or.

but what you can do in your specific case of having nested jars inside your plugin is to use mvn copy-dependencies which allow you to remove lib content from your source Repo and have it dynamically downloaded and put into the lib folder during build.

http://wiki.eclipse.org/Tycho/How_Tos/Dependency_on_pom-first_artifacts has more
on it.

Jbosstools projects uses this for a few things where creating a full set of Osgi dependencies was not feasible.

Hope that helps.

/max
http://about.me/maxandersen

Ok, the information on that page looks promising.

One minor issue with the instructions on that page you cite: The "itp02-pomfirst-parent" artifact is not installed. You first have to run "clean install" in "itp02/build01" to get this.

I don't understand what you're saying about "copy-dependencies". The example you cite doesn't use that, so I don't understand what that has to do with it.

Looking at my application structure, I need to understand the exact correspondence between this and the example. I believe I need to make the following approximate changes:

* the manifest in the "core" module that currently has the "lib" folder, has to have the following changes:
  - Remove the "bundle-classpath" entries that reference the lib jars
- Add an "import-package" specifying all of the packages that the application references from the third-party jars
* Remove the "lib" folder in the "core" module.
* Create a new module, modeled like "pomfirst-thirdparty", that specifies the required jars in maven dependencies.

It's not clear to me that the "pomfirst-bundle" module in the example has a direct correspondence to my application.


On 18 Jan 2016, at 14:27, David M. Karr <davidmichaelkarr@xxxxxxxxx> wrote:

I inherited a large Eclipse plugin codebase, but I'm pretty new to Eclipse plugin development.

I happened to notice that one of the subprojects had a few jars just dumped into a "lib" folder, and those jars are referenced from the .classpath, build.properties, and META-INF/MANIFEST.MF file.  This subproject also has several bundles that it depends on.

I wondered why these artifacts weren't just specified as Maven artifacts.  I asked about this odd convention on the IRC #eclipse channel, and someone said that Tycho can't handle BOTH p2 and Maven artifacts.  I took him at his word, but I need to get more information about this.  I'm working with someone else who believes this shouldn't be a problem, so I need to find some proof for this statement.
_______________________________________________
eclipse-dev mailing list
eclipse-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/eclipse-dev
_______________________________________________
eclipse-dev mailing list
eclipse-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/eclipse-dev



Back to the top