Skip to content

Commit

Permalink
Change implementation() method to api() and publish release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rollczi committed Dec 16, 2021
1 parent 51a81d7 commit c88bdaa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ plugins {
id 'idea'
id 'maven-publish'
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
id 'com.github.johnrengelman.shadow' version '7.1.0'
}

allprojects {
Expand All @@ -19,6 +20,7 @@ allprojects {

apply plugin: 'java-library'
apply plugin: 'maven-publish'
apply plugin: 'com.github.johnrengelman.shadow'

java {
withSourcesJar()
Expand Down
2 changes: 1 addition & 1 deletion litecommands-bukkit/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies {
implementation project(":litecommands-core").getProject()
api project(":litecommands-core").getProject()

compileOnly "org.spigotmc:spigot-api:1.18.1-R0.1-SNAPSHOT"
}
Expand Down
2 changes: 1 addition & 1 deletion litecommands-bungee/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies {
implementation project(":litecommands-core").getProject()
api project(":litecommands-core").getProject()

compileOnly "net.md-5:bungeecord-api:1.18-R0.1-SNAPSHOT"
}
Expand Down
2 changes: 1 addition & 1 deletion litecommands-velocity/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies {
implementation project(":litecommands-core").getProject()
api project(":litecommands-core").getProject()

compileOnly 'com.velocitypowered:velocity-api:3.0.2-SNAPSHOT'
}
Expand Down

0 comments on commit c88bdaa

Please sign in to comment.