-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
57 lines (49 loc) · 1.37 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
57
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
}
}
plugins {
id 'java-gradle-plugin'
id 'groovy'
id 'java'
id 'org.jetbrains.intellij' version '0.4.16'
zeoflowServicesPlugin {
id = 'com.zeoflow.sdk.zeoflow-services'
implementationClass = 'com.zeoflow.sdk.zeoflowservices.ZeoFlowServicesPlugin'
}
}
group = 'com.zeoflow.sdk'
version = '1.0.0'
project.ext.archivesBaseName = 'zeoflow-services'
project.ext.pomDesc = 'Gradle plug-in to use the Zeoflow API applications.'
apply plugin: 'groovy'
apply plugin: 'java-gradle-plugin'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
google()
jcenter()
}
dependencies {
implementation gradleApi()
implementation 'org.codehaus.groovy:groovy-all:2.3.11'
testImplementation group: 'junit', name: 'junit', version: '4.12'
implementation 'com.google.android.gms:strict-version-matcher-plugin:1.2.1'
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'com.google.guava:guava:27.0.1-jre'
testImplementation 'junit:junit:4.12'
testImplementation 'com.google.truth:truth:0.42'
}
intellij {
version '2019.3.1'
}
patchPluginXml {
changeNotes """
Add change notes here.<br>
<em>most HTML tags may be used</em>"""
}