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

Commit 4296026

Browse files
committed
Fix publication, avoid stubs dependency in pom
1 parent 42bca13 commit 4296026

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
apply from: '../../library.gradle'
22

3+
configurations {
4+
stubs // to avoid stubs dependency in pom
5+
implementation.extendsFrom stubs
6+
}
7+
38
dependencies {
49
api project(':static:commons-base')
5-
implementation project(':stubs') // needed to resolve dependency cycle
10+
stubs project(':stubs') // needed to resolve dependency cycle
611
}

0 commit comments

Comments
 (0)