generated from neow3j/neow3j-boilerplate-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (31 loc) · 813 Bytes
/
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
plugins {
id 'java'
id 'io.neow3j.gradle-plugin' version '3.16.0'
}
group 'com.axlabs'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
sourceSets {
deploy {
compileClasspath += sourceSets.main.output
runtimeClasspath += sourceSets.main.output
}
}
dependencies {
implementation 'io.neow3j:devpack:3.16.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2',
'io.neow3j:devpack-test:3.16.0',
'ch.qos.logback:logback-classic:1.2.10'
deployImplementation 'io.neow3j:compiler:3.16.0',
'ch.qos.logback:logback-classic:1.2.10'
}
tasks.withType(Test) {
useJUnitPlatform()
}
neow3jCompiler {
className = "com.axlabs.boilerplate.HelloWorldSmartContract"
}