-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
42 lines (33 loc) · 898 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
41
42
plugins {
id 'java'
id 'io.neow3j.gradle-plugin' version '3.23.0'
}
group 'com.axlabs'
version '1.0-SNAPSHOT'
// The neow3j compiler only supports Java 8.
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
sourceSets {
deploy {
compileClasspath += sourceSets.main.output
runtimeClasspath += sourceSets.main.output
}
}
dependencies {
implementation 'io.neow3j:devpack:3.23.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0',
'io.neow3j:devpack-test:3.23.0',
'ch.qos.logback:logback-classic:1.3.4'
deployImplementation 'io.neow3j:compiler:3.23.0',
'io.neow3j:contract:3.23.0',
'ch.qos.logback:logback-classic:1.2.11'
}
tasks.withType(Test) {
useJUnitPlatform()
}
neow3jCompiler {
className = "com.axlabs.boilerplate.HelloWorldSmartContract"
}