Skip to content

Commit

Permalink
Use implementation over api
Browse files Browse the repository at this point in the history
  • Loading branch information
worleydl committed May 26, 2021
1 parent 901295e commit 71e7c6c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ allprojects {
group = 'com.o19s'
version = "${ltrVersion}-es${elasticsearchVersion}"

apply plugin: 'java-library'
apply plugin: 'java'

dependencies {
api "org.apache.lucene:lucene-expressions:${luceneVersion}"
api "org.antlr:antlr4-runtime:${antlrVersion}"
api "org.ow2.asm:asm:${ow2Version}"
api "org.ow2.asm:asm-commons:${ow2Version}"
api "org.ow2.asm:asm-tree:${ow2Version}"
api 'com.o19s:RankyMcRankFace:0.1.1'
api "com.github.spullara.mustache.java:compiler:0.9.3"
implementation "org.apache.lucene:lucene-expressions:${luceneVersion}"
implementation "org.antlr:antlr4-runtime:${antlrVersion}"
implementation "org.ow2.asm:asm:${ow2Version}"
implementation "org.ow2.asm:asm-commons:${ow2Version}"
implementation "org.ow2.asm:asm-tree:${ow2Version}"
implementation 'com.o19s:RankyMcRankFace:0.1.1'
implementation "com.github.spullara.mustache.java:compiler:0.9.3"
}
}

Expand Down

0 comments on commit 71e7c6c

Please sign in to comment.