-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
56 lines (48 loc) · 1.31 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//buildscript {
// repositories {
// jcenter()
// }
// dependencies {
// classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
// }
//}
apply plugin: 'groovy'
apply plugin: 'java-gradle-plugin'
group = 'com.aliyun.ams'
version = '1.0.1.nvlab-SNAPSHOT'
project.ext.archivesBaseName = 'emas-services'
project.ext.pomDesc = 'Aliyun plug-in to build EMAS applications.'
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
implementation gradleApi()
// implementation localGroovy()
// implementation 'org.codehaus.groovy:groovy-all:2.3.11'
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'com.google.guava:guava:27.0.1-jre'
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
gradlePlugin {
plugins {
greetingsPlugin {
id = 'com.aliyun.ams.emas-services'
implementationClass = 'com.aliyun.ams.emasservices.EmasServicesPlugin'
}
}
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
//apply plugin: 'maven'
//uploadArchives {
// repositories {
// mavenDeployer {
// repository(url: uri('${HOME}/Development'))
// }
// }
//}
//if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey')) {
// apply from: 'bintray.gradle'
//}