forked from crysxd/Svg2VectorAndroid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (28 loc) · 894 Bytes
/
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
group 'geekyappz'
version '1.0.4'
apply plugin: 'java'
repositories {
maven { url 'https://maven.google.com' }
mavenCentral()
jcenter()
}
//create a single Jar with all dependencies
task fatJar(type: Jar) {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
manifest {
attributes 'Implementation-Title': 'Svg2VectorAndroid',
'Implementation-Version': version,
'Main-Class': 'com.vector.svg2vectorandroid.Runner'
}
archiveBaseName = project.name
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA'
with jar
}
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.11'
implementation 'com.android.tools:sdk-common:30.3.0'
implementation 'com.android.tools:common:30.3.0'
}