-
Notifications
You must be signed in to change notification settings - Fork 6
/
install.gradle
38 lines (33 loc) · 1.16 KB
/
install.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
apply plugin: 'com.github.dcendents.android-maven'
group = 'ir.mstajbakhsh'
install {
repositories.mavenInstaller {
pom {
project {
packaging 'aar'
artifactId 'tor-android'
name 'Tor Android'
description 'Tor Android Library'
url 'https://github.com/mirsamantajbakhsh/TorAndroid'
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'mirsamantajbakhsh'
name 'Mir Saman Tajbakhsh'
email 'saman@mstajbakhsh.ir'
}
}
scm {
connection 'https://github.com/mirsamantajbakhsh/TorAndroid.git'
developerConnection 'https://github.com/mirsamantajbakhsh/TorAndroid.git'
url 'https://mstajbakhsh.ir'
}
}
}
}
}