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
library:hook:start [2020/10/16 19:39] – [Maven information] phoenix616library:hook:start [2021/12/06 23:04] (current) – [Maven information] Fix missing close phoenix616
Line 3: Line 3:
 Library to simplify hooking into other plugins. Library to simplify hooking into other plugins.
  
-Currently (directly) support Bukkit and Bungee, adding your own is easily possible though.+Currently (directly) support BukkitBungee and Velocity, adding your own is easily possible though.
  
 ## How to use it ## How to use it
Line 70: Line 70:
     <groupId>de.themoep.hook</groupId>     <groupId>de.themoep.hook</groupId>
     <artifactId>hook-bukkit</artifactId>     <artifactId>hook-bukkit</artifactId>
-    <version>1.0-SNAPSHOT<version>+    <version>1.0-SNAPSHOT</version>
     <scope>compile</scope>     <scope>compile</scope>
 </dependency> </dependency>
Line 81: Line 81:
     <groupId>de.themoep.hook</groupId>     <groupId>de.themoep.hook</groupId>
     <artifactId>hook-bungee</artifactId>     <artifactId>hook-bungee</artifactId>
-    <version>1.0-SNAPSHOT<version>+    <version>1.0-SNAPSHOT</version> 
 +    <scope>compile</scope> 
 +</dependency> 
 +</code> 
 + 
 +#### Velocity adapter: 
 + 
 +<code xml> 
 +<dependency> 
 +    <groupId>de.themoep.hook</groupId> 
 +    <artifactId>hook-velocity</artifactId> 
 +    <version>1.0-SNAPSHOT</version>
     <scope>compile</scope>     <scope>compile</scope>
 </dependency> </dependency>
Line 92: Line 103:
     <groupId>de.themoep.hook</groupId>     <groupId>de.themoep.hook</groupId>
     <artifactId>hook-core</artifactId>     <artifactId>hook-core</artifactId>
-    <version>1.0-SNAPSHOT<version>+    <version>1.0-SNAPSHOT</version>
     <scope>compile</scope>     <scope>compile</scope>
 </dependency> </dependency>