Attempt to fix build

This commit is contained in:
Blue (Lukas Rieger) 2021-04-24 19:59:36 +02:00
parent ad809600b6
commit 5095f0df41
No known key found for this signature in database
GPG Key ID: 904C4995F9E1F800
1 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,5 @@
plugins {
id "com.github.node-gradle.node" version "3.0.0"
id "com.github.node-gradle.node" version "3.0.1"
}
dependencies {
@ -7,10 +7,16 @@ dependencies {
compile project(':BlueMapCore')
compile project(':BlueMapAPI')
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
}
test {
useJUnitPlatform()
}
node {
version = '14.15.5'
version = '14.16.1'
download = true
nodeProjectDir = file("BlueMapVue/")
}