We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My Product 1.2.3
mvn clean package
My Product 1.2.3.exe
mvn org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=2.0.0
The launcher name contains the new version. i.e. My Product 2.0.0.exe on Windows
My Product 2.0.0.exe
The version in the launcher name is not updated and stays on the old version, i.e. My Product 1.2.3.exe on Windows
<product name=My Product" uid="my-product" id="my.product" application="org.eclipse.e4.ui.workbench.swt.E4Application" version="1.2.3" includeLaunchers="true"> <!-- ... --> <launcher name="My Product 1.2.3"> </launcher> <!-- ... --> </product>
The text was updated successfully, but these errors were encountered:
I'm not sure this is something one can expect, how should Tycho know it is "the version" and not an arbitrary string?
Sorry, something went wrong.
It might be more valuable to support property replacement in the launcher name so it can become:
<launcher name="My Product ${project.version}">
or
<launcher name="My Product ${product.version}">
No branches or pull requests
Steps to reproduce
My Product 1.2.3
mvn clean package
and make sure the created launcher includes the version number, egMy Product 1.2.3.exe
on Windowsmvn org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=2.0.0
mvn clean package
and check the name of the created launcherExpected result
The launcher name contains the new version. i.e.
My Product 2.0.0.exe
on WindowsActual result
The version in the launcher name is not updated and stays on the old version, i.e.
My Product 1.2.3.exe
on WindowsExcerpts
The text was updated successfully, but these errors were encountered: