https://github.com/multi-os-engine/moe-ide-integration-eclipse
Multi-OS Engine: Eclipse Plugin
https://github.com/multi-os-engine/moe-ide-integration-eclipse
Last synced: 18 days ago
JSON representation
Multi-OS Engine: Eclipse Plugin
- Host: GitHub
- URL: https://github.com/multi-os-engine/moe-ide-integration-eclipse
- Owner: multi-os-engine
- Created: 2016-09-08T06:17:04.000Z (almost 10 years ago)
- Default Branch: moe-master
- Last Pushed: 2022-07-23T15:25:12.000Z (almost 4 years ago)
- Last Synced: 2025-01-13T14:33:00.754Z (over 1 year ago)
- Language: Java
- Homepage: https://multi-os-engine.org
- Size: 4.04 MB
- Stars: 0
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MOE Eclipse Plugin
This plugin adds Multi-OS Engine Support to Eclipse IDE.
## Building
### Create a Local Build
```bash
mvn clean package -DBUILD_NUMBER=1
```
### Deploy to Local Maven Repository
```bash
mvn clean install -DBUILD_NUMBER=1
```
### Deploy to Bintray (Pre-Release)
```bash
mvn clean package -DBUILD_NUMBER="$PLUGIN_BUILD_NUMBER"
./pushToBintray.sh \
"$BINTRAY_USER" \
"$BINTRAY_API_KEY" \
multi-os-engine \
eclipse-dev \
moe-eclipse \
"$PLUGIN_VERSION" \
./sites/MOEUpdateSite/target/repository
```
```text
PLUGIN_VERSION format: Major.Minor.Patch.vYYYYMMDDHHmm-N
YYYY - Year
MM - Month
DD - Day
HH - Hour
mm - Minute
N - PLUGIN_BUILD_NUMBER
```
Downloadable from [here](http://dl.bintray.com/multi-os-engine/eclipse-dev/).
### Deploy to Bintray (Release)
```bash
mvn clean package -DBUILD_NUMBER="$PLUGIN_BUILD_NUMBER"
./pushToBintray.sh \
"$BINTRAY_USER" \
"$BINTRAY_API_KEY" \
multi-os-engine \
eclipse \
moe-eclipse \
"$PLUGIN_VERSION" \
./sites/MOEUpdateSite/target/repository
```
Downloadable from [here](http://dl.bintray.com/multi-os-engine/eclipse/).
## Developing in Eclipse
Before importing the project into Eclipse or when external Multi-OS Engine
dependencies change, please run:
```bash
mvn verify -DBUILD_NUMBER=1
```