Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxkratz/maven-ecore-modeling-example
Example on how to use Maven to generate and build code for an Ecore/Genmodel file.
https://github.com/maxkratz/maven-ecore-modeling-example
ci continuous-integration eclipse eclipse-modeling-framework eclipse-plugin emf maven mdse
Last synced: 5 days ago
JSON representation
Example on how to use Maven to generate and build code for an Ecore/Genmodel file.
- Host: GitHub
- URL: https://github.com/maxkratz/maven-ecore-modeling-example
- Owner: maxkratz
- License: epl-1.0
- Created: 2023-12-31T09:52:59.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-08-23T05:49:30.000Z (3 months ago)
- Last Synced: 2024-08-23T06:49:15.562Z (3 months ago)
- Topics: ci, continuous-integration, eclipse, eclipse-modeling-framework, eclipse-plugin, emf, maven, mdse
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Maven Ecore Modeling Example
This example shows how to generate and build code from an Ecore/Genmodel (Meta-)Model with [Maven](https://maven.apache.org/).
It can be used to generate and compile the code from an Eclipse modeling project with the help of a CI pipeline and without the need to run Eclipse tasks manually.[![CI](https://github.com/maxkratz/maven-ecore-modeling-example/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/maxkratz/maven-ecore-modeling-example/actions/workflows/ci.yml)
## Structure
| Name | Type | Purpose |
| ------------------------------------------------------------------------ | ------------------------- | ------------------------------------------------------------------- |
| [org.example.model](org.example.model) | Eclipse (plug-in) project | Contains the Ecore and the Genmodel files to generate code from. |
| [ci.yml](.github/workflows/ci.yml) | File | Example GitHub Actions configuration to build and push the project. |
| [pom.xml](org.example.model/pom.xml) | File | Maven configuration file that contains the project's configuration. |
| [GenerateModel.mwe2](org.example.model/src/main/java/GenerateModel.mwe2) | File | MWE2 file to generate the source code from the Ecore/Genmodel file. |## How to build
- Generate code + build the project:
`$ mvn clean package`
- Build + install the project to the local `.m2/` folder:
`$ mvn clean install`
- Change the version of the plug-in to a new semver (e.g., before publishing a new release):
`$ mvn versions:set -DnewVersion=0.0.2-SNAPSHOT`## License
This project is licensed under the Eclipse Public License - v1.0 - see the [LICENSE](LICENSE) file for more details.