· 7 years ago · Oct 03, 2018, 08:54 PM
1publishing {
2 repositories {
3
4 maven {
5 url "s3://bucket_name"
6 credentials(AwsCredentials) {
7 accessKey ""
8 secretKey ""
9 }
10 }
11 }
12
13 publications {
14 jellyfishsdk(MavenPublication) {
15 groupId ''
16 artifactId ''
17 version '1.0'
18 artifact("$buildDir/outputs/aar/file_name.aar")
19 }
20 }
21}
22
23allprojects {
24
25 repositories {
26
27 maven {
28 url "s3://bucket_name"
29 credentials(AwsCredentials) {
30 accessKey ""
31 secretKey ""
32 }
33 }
34 }
35}
36
37implementation 'group:artifact:1.0'