File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ plugins {
5
5
}
6
6
7
7
afterEvaluate {
8
+ def sdkVersion = ' 1.0.1'
9
+ def sdkGroupId = ' io.husseinhj'
8
10
def artifactsId = ' androidpatterns'
9
11
10
12
publishing {
@@ -13,22 +15,22 @@ afterEvaluate {
13
15
from components. release
14
16
15
17
// Replace with your own group ID.
16
- groupId ' io.husseinhj '
18
+ groupId sdkGroupId
17
19
18
20
// Replace with the name of your library
19
21
artifactId artifactsId
20
- version ' 1.0.0 '
22
+ version sdkVersion
21
23
}
22
24
23
25
debug(MavenPublication ) {
24
26
from components. debug
25
27
26
28
// Replace with your own group ID.
27
- groupId ' io.husseinhj '
29
+ groupId sdkGroupId
28
30
29
31
// Replace with the name of your library
30
32
artifactId " ${ artifactsId} -debug"
31
- version ' 1.0.0 '
33
+ version sdkVersion
32
34
}
33
35
}
34
36
You can’t perform that action at this time.
0 commit comments