You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just saw that using Ant to build requires some improvements:
Normally for a Java project all files found in the /lib folder (ie: jar archive) must be put in the Class-Path of the MANIFEST.MF file of the created jar archive. It seems that the model build.xml.tpl file does not support this.
When exporting (ie: Export... -> LibreOffice -> Generate Ant script file) a jar archive of the project is generated and is found at the root of the project. This is not necessary and in any case this created archive is not usable and normally only the build.xml file should be generated at this time.
I will try to propose a PR.
The text was updated successfully, but these errors were encountered:
- **Class-Path** has been added to the `MANIFEST.MF` file.
- No other archive is created when generating the `build.xml` file.
In addition to these two fixes, the management of the package.properties
file has been revised to correct the following problems:
- When deserializing (ie: reading the package.properties file), if any
resources are missing or modified, a message will be logged and the file
marked as modified (ie: isDirty() returns true).
- When saving if there are any pending changes (ie: if you used the text
editor or when opening missing files are displayed) then the text editor
will be reloaded.
- A specific listener for refreshing the widget (ie:
ContainerCheckedTreeViewer) has been implemented.
- All listeners loaded on initialization are now removed during
dispose().
- Hidden files and/or folders (ie: starting with dot) management is now
supported.
- It is now possible to include a folder in the selection if it is empty
(ie: no visible members).
Hi,
I just saw that using Ant to build requires some improvements:
MANIFEST.MF
file of the created jar archive. It seems that the model build.xml.tpl file does not support this.I will try to propose a PR.
The text was updated successfully, but these errors were encountered: