-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
49 lines (43 loc) · 1.01 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
buildscript {
repositories {
mavenCentral()
jcenter()
}
}
plugins {
id 'application'
id 'io.left.rightmesh.rightmesh-plugin' version '1.8.1'
}
rightmesh {
appKey = rightmesh_hellojavamesh_key
username = rightmesh_devportal_username
password = rightmesh_devportal_password
}
repositories {
google()
mavenLocal()
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
maven {
url "https://dl.bintray.com/ethereum/maven/"
}
maven {
url "https://artifactory.rightmesh.io/artifactory/maven"
credentials {
username rightmesh_artifactory_username
password rightmesh_artifactory_password
}
}
}
dependencies {
compile 'io.left.rightmesh:lib-rightmesh-jre:0.10.0'
compile 'com.google.guava:guava:23.0'
testCompile 'junit:junit:4.12'
}
processResources {
dependsOn rightmesh
from rightmesh.outputFile
}
mainClassName = 'HelloJavaMesh'
applicationDefaultJvmArgs = ["-noverify"]