-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
67 lines (59 loc) · 1.93 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
buildscript {
ext {
// define these variables in your personal ~/.gradle/gradle.properties
// for example:
/*
rightmesh_artifactory_username=<username>
rightmesh_artifactory_password=<hash of your developer portal password>
rightmesh_superpeer_key=<some key that you have access to>
*/
artifactory_app_username = "${rightmesh_artifactory_username}"
artifactory_app_password = "${rightmesh_artifactory_password}"
artifactory_app_key = "${rightmesh_superpeer_key}"
}
repositories {
mavenCentral()
jcenter()
maven {
url "https://research.rightmesh.io/artifactory/libs-local"
credentials {
username rightmesh_artifactory_username
password rightmesh_artifactory_password
}
}
}
dependencies {
classpath 'io.left.rightmesh:rightmesh-plugin:1.6'
}
}
plugins {
id 'application'
}
apply plugin: 'io.left.rightmesh.rightmesh-plugin'
build.dependsOn("rightmesh")
repositories {
mavenCentral()
maven {
url "https://dl.bintray.com/ethereum/maven/"
}
jcenter()
maven {
url "https://research.rightmesh.io/artifactory/libs-local"
credentials {
username rightmesh_artifactory_username
password rightmesh_artifactory_password
}
}
}
dependencies {
implementation 'org.apache.httpcomponents:httpclient:4.3.4'
implementation 'com.google.guava:guava:23.0'
implementation ('io.left.rightmesh:rightmesh-java-library:0.9.0')
// https://mvnrepository.com/artifact/org.ethereum/ethereumj-core
implementation 'org.ethereum:ethereumj-core:1.4.5-RELEASE'
implementation 'mysql:mysql-connector-java:5.1.13'
implementation 'io.github.cdimascio:java-dotenv:3.1.1'
testCompile 'junit:junit:4.12'
}
applicationDefaultJvmArgs = ["-noverify"]
mainClassName = 'SuperPeer'