StreamingPluginClient/README.MD

23 lines
809 B
Plaintext
Raw Normal View History

2018-09-15 12:41:02 +02:00
# Streaming Plugin Client
A Java client for the [Wii U Streaming Plugin](https://github.com/Maschell/StreamingPluginWiiU).
# Usage
Start the plugin via the [WiiUPluginSystemLoader](https://github.com/Maschell/WiiUPluginSystem) on your WiiU. Now start Java client by either
2018-11-20 10:59:01 +01:00
- provide the ip address of your Wii U as a argument. Example: `java -jar StreamingPluginClient[...].jar --ip 192.168.0.11`
2018-09-15 12:41:02 +02:00
- **or** just double click on the .jar. A little dialog should appear where you can enter the IP address of your Wii U console.
Requires Java 8.
# Building
This is a maven project. Use following command to create a .jar with dependencies in the `target` folder.
```
mvn package
2018-09-15 14:28:29 +02:00
```
# Used libraries
- [lombok](https://projectlombok.org/)
2018-11-20 10:59:01 +01:00
- [commons-cli](https://commons.apache.org/proper/commons-cli/)