This repository has been archived by the owner on Mar 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.gradle
53 lines (50 loc) · 1.67 KB
/
dependencies.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
ext {
baseArtifactName = "auto-binder"
baseRepoBucket = "zTrap/$baseArtifactName"
baseRepoUrl = "https://github.com/$baseRepoBucket"
setup = [
jvm: JavaVersion.VERSION_1_8
]
versions = [
kotlin : "1.3.61",
dokka : "0.9.16",
bintray: "1.8.4",
appcompat : "1.0.2",
auto : [
service: "1.0-rc6",
common : "0.10",
],
javapoet: "1.11.1",
dagger : "2.25.2",
incap : "0.2"
]
pom_info = [
group : "ru.ztrap.tools",
packaging: "jar",
repo : [
type: "maven",
vcs : "${baseRepoUrl}.git",
url : baseRepoUrl,
],
scm : [
url : baseRepoUrl,
connection : "scm:git@github.com:${baseRepoBucket}.git",
dev_connection: "scm:git@github.com:${baseRepoBucket}.git"
],
license : [
name: "the apache software license, version 2.0",
url : "http://www.apache.org/licenses/license-2.0.txt",
dist: "repo",
],
developer: [
id : "ztrap",
name: "peter gulko"
],
artifact : [
id : "$baseArtifactName-project",
name : "Root project for $baseArtifactName",
description: "Root project for $baseArtifactName $baseRepoUrl",
version : "1.0.6",
]
]
}