Replies: 3 comments 8 replies
-
The only think to consider when converting those is, that About the wiki, I think we should migrate the Information to the site-docs or to the GH-Wiki I'm not aware of anyone maintaining that wiki anymore... There is even maybe we can convert this to javadoc and then use this in the site-docs? |
Beta Was this translation helpful? Give feedback.
-
That doesn't seem true. |
Beta Was this translation helpful? Give feedback.
-
Maven is kind of going against the "treat tests as 1st class citizen" rule usually; while Eclipse has embraced it from the beginning, making test artifacts real artifacts; which allows to install them reliably and to run them in more configurations without requiring more than Eclipse itself. This approach may not suit "libraries" but it's often much more convenient for Eclipse plugins. |
Beta Was this translation helpful? Give feedback.
-
It seems that there is no longer a reason to use the packaging
eclipse-test-plugin
as this is under the hood using almost the same configuration aseclipse-plugin
but some features are just not available there (compare with #1491). If there is not a reason I currently fail to see I would rather recommend to deprecate the packagingeclipse-test-plugin
, i.e. emit some warning when this is used.It seems that also the documentation at https://wiki.eclipse.org/Tycho/Packaging_Types#eclipse-test-plugin is heavily outdated as meanwhile both ITs and unit tests are supported with regular
eclipse-plugin
/In the long term (i.e. with Tycho 4.0) all the code related to
eclipse-test-plugin
can finally be removed. WDYT?This proposal is not about getting rid of dedicated
eclipse-plugin
modules just containing ITs, just about using the same packaging as the bundle code to be tested.Beta Was this translation helpful? Give feedback.
All reactions