-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
68 lines (59 loc) · 1.26 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
67
68
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'org.hidetake.ssh'
group 'UDPFileTransfer'
mainClassName = 'UDPFileTransfer.main.Main'
version = '0.0.1'
jar {
manifest {
attributes 'Implementation-Title': 'UDPFileTransfer',
'Implementation-Version': version,
'Main-Class': mainClassName
}
}
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
testCompile "junit:junit:4.12"
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.hidetake:gradle-ssh-plugin:2.8.0'
}
}
remotes {
pi {
role 'masterNode'
host = '192.168.40.2'
user = 'pi'
password = 'raspberry'
}
}
task status {
doLast {
ssh.run {
session(remotes.pi) {
execute 'sudo systemctl status num2.service'
}
}
}
}
task deploy {
doLast {
ssh.run {
session(remotes.pi) {
put from: "build/libs/UDPFileTransfer-${version}.jar", into: "/home/pi/UDPFileTransfer.jar"
execute 'sudo systemctl restart num2.service'
//execute 'tail -f /var/log/syslog'
}
}
}
}
ssh.settings {
knownHosts = allowAnyHosts
}