-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
43 lines (34 loc) · 1.02 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
plugins {
id 'java'
id 'io.neow3j.gradle-plugin' version '3.17.1-SNAPSHOT'
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
group 'io.grantshares'
version '1.0.0'
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
sourceSets {
deploy {
compileClasspath += sourceSets.test.output
runtimeClasspath += sourceSets.test.output
compileClasspath += sourceSets.main.output
runtimeClasspath += sourceSets.main.output
}
}
dependencies {
implementation 'io.neow3j:devpack:3.17.1-SNAPSHOT'
testImplementation 'io.neow3j:devpack-test:3.17.1-SNAPSHOT',
'io.neow3j:compiler:3.17.1-SNAPSHOT',
'org.junit.jupiter:junit-jupiter:5.8.2',
'org.hamcrest:hamcrest:2.2'
deployImplementation 'io.neow3j:compiler:3.17.1-SNAPSHOT'
}
tasks.withType(Test) {
useJUnitPlatform()
}
neow3jCompile {
className = "com.axlabs.neo.grantshares.GrantSharesTreasury"
}