https://github.com/miho/vrl-tutorial-plugin-01
https://github.com/miho/vrl-tutorial-plugin-01
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/miho/vrl-tutorial-plugin-01
- Owner: miho
- Created: 2013-03-19T13:06:14.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2019-11-16T11:36:35.000Z (about 6 years ago)
- Last Synced: 2025-02-15T21:20:00.806Z (11 months ago)
- Language: Java
- Size: 134 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VRL-Tutorial-Plugin-01
[](https://travis-ci.org/miho/VRL-Tutorial-Plugin-01)
This project demonstrates how to create a simple [VRL](http://vrl-studio.mihosoft.eu) plugin.
Webpage: http://vrl-studio.mihosoft.eu
Join the [Developer Group](https://groups.google.com/forum/#!forum/vrl-developers) if you'd like to contribute.
## How To Build The Project
### 1. Dependencies
- JDK >= 1.8 (tested with JDK 8-13)
- Internet Connection (other dependencies will be downloaded automatically)
- Optional: IDE with [Gradle](http://www.gradle.org/) support
### 2. Configuration (Optional)
If the plugin shall be installed to a custom destination, specify the path in `build.properties`, e.g.,
# vrl property folder location (plugin destination)
vrldir=/path/to/.vrl/0.4.4/myvrl
Otherwise, the plugin will be installed to the default location (depends on VRL version that is specified in the gradle dependencies).
### 3. Build & Install
#### IDE
To build the project from an IDE do the following:
- open the [Gradle](http://www.gradle.org/) project
- call the `installVRLPlugin` Gradle task to build and install the plugin
- restart VRL-Studio
#### Command Line
Building the project from the command line is also possible.
Navigate to the project folder and call the `installVRLPlugin` [Gradle](http://www.gradle.org/)
task to build and install the plugin.
##### Bash (Linux/OS X/Cygwin/other Unix-like OS)
cd Path/To/VRL-Tutorial-Plugin-01/VRL-Tutorial-Plugin-01
./gradlew installVRLPlugin
##### Windows (CMD)
cd Path\To\VRL-Tutorial-Plugin-01\VRL-Tutorial-Plugin-01
gradlew installVRLPlugin
Finally, restart VRL-Studio