-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.gradle
49 lines (41 loc) · 1.03 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
group 'lt.neworld.vd2svg'
version '0.4.4'
buildscript {
ext.kotlin_version = '1.2.71'
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "lt.neworld.gradle:gradle-jdeploy-plugin:0.4.0"
}
}
apply plugin: 'kotlin'
apply plugin: "lt.neworld.jdeploy"
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "com.xenomachina:kotlin-argparser:2.0.7"
testCompile "junit:junit:4.12"
}
jar {
manifest {
attributes 'Main-Class': 'lt.neworld.vd2svg.Vd2Svg'
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
jdeploy {
name = "vd2svg"
author = "Andrius Semionovas"
description = "Android vector drawable to SVG"
license = "Apache-2.0"
repository = "https://github.com/neworld/vd2svg"
}