Open
Description
The plug-in org.eclipse.java
says in its manifest: "Java Utilities, no dependencies to Eclipse". However, this was recently changed by the timestamp formatting changes, which require org.eclise.equinox.preferences
.
You wouldn't expect this to cause a problem, but it has: the standalone EDM converter jar build depended on this, and there's no easy way to include the Eclipse depdency in that build.
We have a couple of options:
- pull
./src/org/csstudio/java/time/TimestampFormats.java
into another plugin that has an Eclipse dependency - copy
./src/org/csstudio/java/string/StringSplitter.java
into the EDM converter plugin as well and rely on it not changing very much
Any ideas?