Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
plugin:connectorplugin:usage:start [2021/10/12 00:08] – [Maven Info] Use correct version phoenix616plugin:connectorplugin:usage:start [2021/10/14 21:47] – Add velocity phoenix616
Line 3: Line 3:
 [Javadocs](https://docs.phoenix616.dev/connectorplugin/) [Javadocs](https://docs.phoenix616.dev/connectorplugin/)
  
-The most useful classes will be the [Connector](https://docs.phoenix616.dev/connectorplugin/de/themoep/connectorplugin/connector/Connector.html) and the Bridge utilities ([bukkit](https://docs.phoenix616.dev/connectorplugin/de/themoep/connectorplugin/bukkit/Bridge.html), [bungee](https://docs.phoenix616.dev/connectorplugin/de/themoep/connectorplugin/bungee/Bridge.html)). Both can be accessed via the getters in the plugin's main class.+The most useful classes will be the [Connector](https://docs.phoenix616.dev/connectorplugin/de/themoep/connectorplugin/connector/Connector.html) and the Bridge utilities ([Bukkit](https://docs.phoenix616.dev/connectorplugin/de/themoep/connectorplugin/bukkit/Bridge.html), [Bungee](https://docs.phoenix616.dev/connectorplugin/de/themoep/connectorplugin/bungee/Bridge.html), [Velocity](https://docs.phoenix616.dev/connectorplugin/de/themoep/connectorplugin/velocity/Bridge.html)). Both can be accessed via the getters in the plugin's main class.
  
 ## Examples ## Examples
  
-Check out the [Bukkit](https://github.com/Phoenix616/ConnectorPlugin/blob/master/bukkit/src/main/java/de/themoep/connectorplugin/bukkit/Bridge.java) and [Bungee](https://github.com/Phoenix616/ConnectorPlugin/blob/master/bungee/src/main/java/de/themoep/connectorplugin/bungee/Bridge.java) bridge utility source for example implementations of the messaging.+Check out the [Bukkit](https://github.com/Phoenix616/ConnectorPlugin/blob/master/bukkit/src/main/java/de/themoep/connectorplugin/bukkit/Bridge.java)[Bungee](https://github.com/Phoenix616/ConnectorPlugin/blob/master/bungee/src/main/java/de/themoep/connectorplugin/bungee/Bridge.java) and [Velocity](https://github.com/Phoenix616/ConnectorPlugin/blob/master/velocity/src/main/java/de/themoep/connectorplugin/velocity/Bridge.java) bridge utility source for example implementations of the messaging
 + 
 +See the [GlobalWarps plugin](https://github.com/Phoenix616/GlobalWarps/) for an example on how to use (parts of) the bridge.
  
 ## Maven Info ## Maven Info
Line 21: Line 23:
 <dependency> <dependency>
     <groupId>de.themoep.connectorplugin</groupId>     <groupId>de.themoep.connectorplugin</groupId>
-    <artifactId>[bukkit|bungee]</artifactId>+    <artifactId>[bukkit|bungee|velocity]</artifactId>
     <version>1.2-1SNAPSHOT</version>     <version>1.2-1SNAPSHOT</version>
     <scope>provided</scope>     <scope>provided</scope>
 </dependency> </dependency>
 </code> </code>