File tree Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ dependencies {
47
47
androidTestImplementation ' androidx.test.espresso:espresso-core:3.5.1'
48
48
49
49
implementation project(' :rxretrohttp' )
50
- // implementation 'com.github.BakerJQ:RxRetroHttp:1.2.9 '
50
+ // implementation 'com.github.BakerJQ:RxRetroHttp:1.2.10 '
51
51
implementation ' com.github.bumptech.glide:glide:4.11.0'
52
52
annotationProcessor ' com.github.bumptech.glide:compiler:4.9.0'
53
53
implementation ' com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.50'
Original file line number Diff line number Diff line change @@ -43,10 +43,21 @@ afterEvaluate {
43
43
// You can then customize attributes of the publication as shown below.
44
44
groupId = ' com.github.BakerJQ'
45
45
artifactId = ' RxRetroHttp'
46
- version = ' 1.2.9 '
46
+ version = ' 1.2.10 '
47
47
artifact(bundleReleaseAar)
48
- }
49
- // Creates a Maven publication called “debug”.
48
+ // generate pom nodes for dependencies
49
+ pom. withXml {
50
+ def dependenciesNode = asNode(). appendNode(' dependencies' )
51
+ configurations. implementation. allDependencies. each { dependency ->
52
+ if (dependency. name != ' unspecified' ) {
53
+ def dependencyNode = dependenciesNode. appendNode(' dependency' )
54
+ dependencyNode. appendNode(' groupId' , dependency. group)
55
+ dependencyNode. appendNode(' artifactId' , dependency. name)
56
+ dependencyNode. appendNode(' version' , dependency. version)
57
+ }
58
+ }
59
+ }
60
+ // Creates a Maven publication called “debug”.
50
61
// debug(MavenPublication) {
51
62
// // Applies the component for the debug build variant.
52
63
// from components.debug
@@ -55,6 +66,7 @@ afterEvaluate {
55
66
// artifactId = 'final-debug'
56
67
// version = '1.0'
57
68
// }
69
+ }
58
70
}
59
71
}
60
72
}
You can’t perform that action at this time.
0 commit comments