-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (36 loc) · 915 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
apply plugin: 'groovy'
apply plugin: 'com.novoda.bintray-release'
apply plugin: 'maven'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.9.1'
}
}
repositories {
jcenter()
mavenCentral()
}
dependencies {
implementation gradleApi()
implementation 'com.yunify:qingstor.sdk.java:2.2.17'
implementation 'com.aliyun.oss:aliyun-sdk-oss:3.6.0'
}
publish {
userOrg = 'chengww5217'
groupId = 'com.chengww'
artifactId = 'gradle-deploy'
publishVersion = '0.0.2'
desc = 'A deploy script for projects built by gradle'
website = 'https://github.com/chengww5217/gradle-deploy'
}
uploadArchives {
repositories.mavenDeployer {
repository(url: uri('./repo'))
pom.groupId = publish.groupId
pom.artifactId = publish.artifactId
pom.version = publish.publishVersion
}
}