forked from pravega/pravega-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (40 loc) · 1.21 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
/**
* Copyright (c) 2017 Dell Inc., or its subsidiaries. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*/
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
buildscript {
repositories {
jcenter()
}
}
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven {
url "https://oss.jfrog.org/jfrog-dependencies"
}
}
dependencies {
compile "io.pravega:pravega-client:${pravegaVersion}",
"io.pravega:pravega-common:${pravegaVersion}",
"commons-cli:commons-cli:${commonsCLIVersion}",
"org.apache.commons:commons-csv:${commonsCSVVersion}"
runtime "org.slf4j:slf4j-simple:${slf4jSimpleVersion}"
}
mainClassName = "io.pravega.perf.PravegaPerfTest"
startScripts {
doLast {
unixScript.text = unixScript.text.replace('SERVER_APP_HOME', '\$APP_HOME')
windowsScript.text = windowsScript.text.replace('SERVER_APP_HOME', '%~dp0..')
}
}