https://github.com/frklan/apollo
A basic console launcher part of the Prometheus project
https://github.com/frklan/apollo
Last synced: over 1 year ago
JSON representation
A basic console launcher part of the Prometheus project
- Host: GitHub
- URL: https://github.com/frklan/apollo
- Owner: frklan
- License: mit
- Created: 2018-02-03T20:07:25.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-04T07:54:18.000Z (over 8 years ago)
- Last Synced: 2025-01-21T18:11:59.507Z (over 1 year ago)
- Language: Java
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: code-of-conduct.md
Awesome Lists containing this project
README
# Apollo
[](http://www.oracle.com/technetwork/java/javase/overview/java8-2100321.html)
[](https://travis-ci.org/frklan/Apollo)
[](https://github.com/frklan/Apollo/releases)
[](https://github.com/frklan/Apollo/issues)
[](https://github.com/frklan/Apollo/blob/master/LICENSE)
Part of the Prometheus project.
This is a very simple command line interpreter, a minimal set of build in commands are available (at present 'help', 'version' and 'stop'; out of which 'stop' is of any real use). However, the functionally is easy expanded by a plugin system where stand alone java jar-packages are loaded at runtime.
## Compiling and running
Prerequisites
- Java 8 SDK
- Apached Maven
### Compiling
To compile issue the following commands
````
$ git clone git@github.com:frklan/Apollo.git
$ cd Apollo
$ mvn package install
````
### Running
Download and compile the source code as outlined above, then:
````
$ cd launcher/target
$ java -jar Apollo-0.0.1-SNAPSHOT.jar
````
## Plugin
The basic functions of the launcher can be expanded with simple jar plugins, see [plugin template](https://github.com/PrometheusTemplatePlugin) for an up-to-date example.
## Contributing
Contributions are always welcome!
When contributing to this repository, please first discuss the change you wish to make via the issue tracker, email, or any other method with the owner of this repository before making a change.
Please note that we have a code of conduct, you are required to follow it in all your interactions with the project.
## Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
## Authors
- Fredrik Andersson - Initial work - frklan
## License
This project is licensed under the MIT License - see the LICENSE file for details
## Acknowledgments
- The creators of BungeeCord and SpigotMC
- README based on PurpleBooth's template