Conversation
AxelRICHARD
reviewed
Jun 24, 2026
Contributor
|
@seidewitz no more remarks on my side, thank you |
seidewitz
added a commit
that referenced
this pull request
Jun 25, 2026
ST6RI-943 Restore ability to install and run without Maven build
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR restores the ability to install the Pilot Implementation development environment and run the Xtext editor in a runtime instance, without first doing a full Maven install. (However, a Maven clean install should still be done before changing any code.)
Background
PRs #750 (ST6RI-916 in 2026-04) and #754 (ST6RI-926 for 2026-05) refactored code from the
org.omg.sysmlplugin into the non-plugin module projectsorg.omg.sysml.modelandorg.omg.sysml.logic, respectively. After the implementation of these PRs, a Maven install generats JARs for the new projects thatich are used by corresponding bundle projects to provide the modularized functionality to theorg.omg.sysmlplugin. However, these JARs were not being stored in the repository. So, after installing the development environment, a user had to do a Maven build to generate the JARs before the IDE could be run.Changes
org.omg.sysml.model.bundle/.gitignoreandorg.omg.sysml.logic.bundle/.gitignoreso that the correspondinglibsubdirectories are not ignored.org.omg.sysml.logic/pom.xmlto use the same approach asorg.omg.sysml.logic.bundle/pom.xml to copy the JAR file fromorg.omg.sysml.logic. This approach does not produce an error if the source JAR file does not exist.