-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
executable file
·44 lines (37 loc) · 1.07 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
plugins {
id 'com.palantir.git-version' version '0.11.0'
id 'groovy'
id 'java-gradle-plugin'
id 'com.gradle.plugin-publish' version '0.10.1'
}
description = 'Gradle POEditor Plugin'
group = 'de.jansauer.poeditor'
version = gitVersion()
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven {
url "https://dl.bintray.com/rburgst/android"
}
}
dependencies {
// https://http-builder-ng.github.io/http-builder-ng/
// https://http-builder-ng.github.io/http-builder-ng/docs/javadoc/
compile 'io.github.http-builder-ng:http-builder-ng-okhttp:1.0.4'
testCompile('org.spockframework:spock-core:1.3-groovy-2.5') {
exclude(module: 'groovy-all')
}
}
pluginBundle {
website = 'https://github.com/jansauer/gradle-poeditor-plugin'
vcsUrl = 'https://github.com/jansauer/gradle-poeditor-plugin'
description = 'Gradle POEditor Plugin.'
tags = ['i18n', 'poeditor', 'translation', 'terms', 'gitlab', 'angular']
plugins {
poeditorPlugin {
id = 'de.jansauer.poeditor'
displayName = 'Gradle POEditor Plugin'
}
}
}