Skip to content

Commit

Permalink
v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joserobjr committed Oct 22, 2016
1 parent 99b3adc commit 351accd
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 18 deletions.
44 changes: 27 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,19 @@ Now add one of compile line below:
```gradle
dependencies {
// For 0.1 Bukkit:
compile 'com.github.GameModsBR.KotlinFun:BukkitPlugin:0.1'
// For 0.2 Spigot:
compile 'com.github.GameModsBR.KotlinFun:SpigotPlugin:0.2'
// For 0.1 BungeeCord:
compile 'com.github.GameModsBR.KotlinFun:BungeePlugin:0.1'
// For 0.2 Bukkit:
compile 'com.github.GameModsBR.KotlinFun:BukkitPlugin:0.2'
// For 0.1 Universal:
compile 'com.github.GameModsBR.KotlinFun:UniversalPlugin:0.1'
// For 0.2 BungeeCord:
compile 'com.github.GameModsBR.KotlinFun:BungeePlugin:0.2'
// For 0.2-SNAPSHOT (includes everything)
// For 0.2 Universal:
compile 'com.github.GameModsBR.KotlinFun:UniversalPlugin:0.2'
// For 0.3-SNAPSHOT (includes everything)
compile 'com.github.GameModsBR:KotlinFun:master-SNAPSHOT'
}
Expand All @@ -53,7 +56,7 @@ Add this repository to your main `pom.xml`
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
<url>https://jitpack.io</url>
</repository>
</repositories>
```
Expand All @@ -62,28 +65,35 @@ Now add one of the depedencies below:
```xml
<dependencies>

<!-- For 0.1 Bukkit -->
<!-- For 0.2 Spigot -->
<dependency>
<groupId>com.github.GameModsBR.KotlinFun</groupId>
<artifactId>SpigotPlugin</artifactId>
<version>0.2</version>
</dependency>

<!-- For 0.2 Bukkit -->
<dependency>
<groupId>com.github.GameModsBR.KotlinFun</groupId>
<artifactId>BukkitPlugin</artifactId>
<version>0.1</version>
<version>0.2</version>
</dependency>

<!-- For 0.1 BungeeCord -->
<!-- For 0.2 BungeeCord -->
<dependency>
<groupId>com.github.GameModsBR.KotlinFun</groupId>
<artifactId>BungeePlugin</artifactId>
<version>0.1</version>
<version>0.2</version>
</dependency>

<!-- For 0.1 Universal -->
<!-- For 0.2 Universal -->
<dependency>
<groupId>com.github.GameModsBR.KotlinFun</groupId>
<artifactId>UniversalPlugin</artifactId>
<version>0.1</version>
<version>0.2</version>
</dependency>

<!-- For 0.2-SNAPSHOT (includes everything) -->
<!-- For 0.3-SNAPSHOT (includes everything) -->
<dependency>
<groupId>com.github.GameModsBR</groupId>
<artifactId>KotlinFun</artifactId>
Expand All @@ -99,7 +109,7 @@ If you want to work with a different Bukkit/BungeeCord version then add a exclus
<dependency>
<groupId>com.github.GameModsBR.KotlinFun</groupId>
<artifactId>BukkitPlugin</artifactId>
<version>0.1</version>
<version>0.2</version>
<exclusions>
<exclusion>
<groupId>org.bukkit</groupId>
Expand All @@ -111,7 +121,7 @@ If you want to work with a different Bukkit/BungeeCord version then add a exclus
<dependency>
<groupId>com.github.GameModsBR.KotlinFun</groupId>
<artifactId>BungeePlugin</artifactId>
<version>0.1</version>
<version>0.2</version>
<exclusions>
<exclusion>
<groupId>net.md-5</groupId>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
allprojects {
group 'br.com.gamemods.kotlinfun'
version '0.2-SNAPSHOT'
version '0.2'

apply plugin: 'kotlin'

Expand Down

0 comments on commit 351accd

Please sign in to comment.