Skip to content
This repository has been archived by the owner on Jul 13, 2020. It is now read-only.

Commit

Permalink
Fix publication, avoid stubs dependency in pom
Browse files Browse the repository at this point in the history
  • Loading branch information
4u7 committed Oct 2, 2018
1 parent 42bca13 commit 4296026
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion anko/library/static/platform/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
apply from: '../../library.gradle'

configurations {
stubs // to avoid stubs dependency in pom
implementation.extendsFrom stubs
}

dependencies {
api project(':static:commons-base')
implementation project(':stubs') // needed to resolve dependency cycle
stubs project(':stubs') // needed to resolve dependency cycle
}

0 comments on commit 4296026

Please sign in to comment.