forked from conservify/arduino-gradle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
66 lines (52 loc) · 1.97 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
}
}
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'groovy'
apply plugin: 'maven'
repositories {
mavenLocal()
mavenCentral()
maven {
url = uri("https://jitpack.io")
}
}
group = 'com.github.jlewallen.arduino'
version = '1.0'
shadowJar {
classifier = null
configurations = [project.configurations.shadow]
dependencies {
exclude(dependency('org.codehaus.groovy:*:*'))
include(dependency('com.fazecast:jSerialComm:1.3.11'))
include(dependency('com.github.rudolf1:firmware-tool:master'))
include(dependency('commons-io:commons-io:2.5'))
include(dependency('org.eclipse.jgit:org.eclipse.jgit:4.6.0.201612231935-r'))
include(dependency('org.eclipse.jgit:org.eclipse.jgit.http.apache:4.6.0.201612231935-r'))
include(dependency('com.jcraft:jsch:0.1.53'))
include(dependency('org.scream3r:jssc:2.8.0'))
}
}
artifacts {
archives shadowJar
}
dependencies {
compile gradleApi()
compile localGroovy()
compile 'com.github.rudolf1:firmware-tool:master'
shadow 'com.github.rudolf1:firmware-tool:master'
compile group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: '4.6.0.201612231935-r'
shadow group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: '4.6.0.201612231935-r'
compile group: 'org.eclipse.jgit', name: 'org.eclipse.jgit.http.apache', version: '4.6.0.201612231935-r'
shadow group: 'org.eclipse.jgit', name: 'org.eclipse.jgit.http.apache', version: '4.6.0.201612231935-r'
shadow group: 'com.jcraft', name: 'jsch', version: '0.1.53'
compile group: 'commons-io', name: 'commons-io', version: '2.5'
shadow 'commons-io:commons-io:2.5'
compile 'org.scream3r:jssc:2.8.0'
shadow 'org.scream3r:jssc:2.8.0'
}