File tree Expand file tree Collapse file tree 5 files changed +10
-8
lines changed Expand file tree Collapse file tree 5 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1
- 1.1.1
1
+ 1.1.2
Original file line number Diff line number Diff line change 26
26
publishArtifactId = " $artifact "
27
27
28
28
libraryName = " $libraryName "
29
- libraryDescription = ' Util Module'
29
+ libraryDescription = ' Barcode Module'
30
30
libraryVersion = " $coreVersion "
31
31
}
32
32
Original file line number Diff line number Diff line change 26
26
publishArtifactId = " $artifact "
27
27
28
28
libraryName = " $libraryName "
29
- libraryDescription = ' Util Module'
29
+ libraryDescription = ' Network Module'
30
30
libraryVersion = " $coreVersion "
31
31
}
32
32
Original file line number Diff line number Diff line change @@ -63,10 +63,12 @@ if (ossrhProp.exists()) {
63
63
def dependenciesNode = asNode(). appendNode(' dependencies' )
64
64
65
65
project. configurations. implementation. allDependencies. each {
66
- def dependencyNode = dependenciesNode. appendNode(' dependency' )
67
- dependencyNode. appendNode(' groupId' , it. group)
68
- dependencyNode. appendNode(' artifactId' , it. name)
69
- dependencyNode. appendNode(' version' , it. version)
66
+ if (it. group != null && it. name != null ) {
67
+ def dependencyNode = dependenciesNode. appendNode(' dependency' )
68
+ dependencyNode. appendNode(' groupId' , it. group)
69
+ dependencyNode. appendNode(' artifactId' , it. name)
70
+ dependencyNode. appendNode(' version' , it. version)
71
+ }
70
72
}
71
73
}
72
74
}
Original file line number Diff line number Diff line change 26
26
publishArtifactId = " $artifact "
27
27
28
28
libraryName = " $libraryName "
29
- libraryDescription = ' Util Module'
29
+ libraryDescription = ' UI Module'
30
30
libraryVersion = " $coreVersion "
31
31
}
32
32
You can’t perform that action at this time.
0 commit comments