forked from martinpilat/masTeaching
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
26 lines (21 loc) · 835 Bytes
/
Copy pathbuild.gradle
File metadata and controls
26 lines (21 loc) · 835 Bytes
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
apply plugin: 'application'
repositories {
mavenCentral()
maven {
url "http://jade.tilab.com/maven"
}
}
dependencies {
compile group: 'com.tilab.jade', name: 'jade', version: '4.4.0'
}
// this project uses non-standard layout
sourceSets{main{java{srcDir 'src'}}}
mainClassName = 'jade.Boot'
run {
args = ['-gui', 'DiscountSeller1:mas.cv4.DiscountSellerAgent;DiscountSeller2:mas.cv4.DiscountSellerAgent;DiscountSeller3:mas.cv4.DiscountSellerAgent;DiscountSeller4:mas.cv4.DiscountSellerAgent;DumpingSeller5:mas.cv4.DumpingAgent;Envi:mas.cv4.Environment']
}
task runConnect(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = mainClassName
args = ['-container', '-container-name', 'blueteam', '-host', 'u-pl4', '-agents', 'DSagent-blueteam:mas.cv4.DiscountSellerAgent;blueteamgui:jade.tools.rma.rma']
}