https://github.com/overturetool/overture-graphics-plugin
Live plotting for Overture using listeners
https://github.com/overturetool/overture-graphics-plugin
Last synced: over 1 year ago
JSON representation
Live plotting for Overture using listeners
- Host: GitHub
- URL: https://github.com/overturetool/overture-graphics-plugin
- Owner: overturetool
- Created: 2016-06-03T08:51:07.000Z (about 10 years ago)
- Default Branch: development
- Last Pushed: 2016-10-04T12:25:19.000Z (over 9 years ago)
- Last Synced: 2025-01-05T09:42:01.691Z (over 1 year ago)
- Language: Java
- Size: 1 MB
- Stars: 0
- Watchers: 17
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# overture-graphics-plugin
### Electron
##### Initialize
1. `npm install`
2. `npm install -g typings`
3. `npm install -g gulp`
4. `gulp init`
5. `typings install`
##### Run
1. `gulp`
2. `npm start`
### Java
##### Package
`TODO`
## Release Procedure
Version numbers:
- even is release
- uneven are development versions which are snapshots
### Releasing the Java module
```bash
mvn -Dmaven.repo.local=repository release:clean
mvn -Dmaven.repo.local=repository release:prepare -DreleaseVersion=${RELEASE_VER} -DdevelopmentVersion=${NEW_DEV_VER} -DpushChanges=false
git push --follow-tags
mvn -Dmaven.repo.local=repository release:perform
```
### Releasing the Electron module
```bash
gulp build
gulp package-all
```