Select Git revision
Forked from
cosc360-2016 / project-base
Source project has a limited visibility.
-
Will Billingsley authored
I've added a couple of examples to the project -- some simple code calling Akka actors, and some code for calling web services.
Will Billingsley authoredI've added a couple of examples to the project -- some simple code calling Akka actors, and some code for calling web services.
build.gradle 472 B
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.9'
}
javafx {
version = "15.0.1"
modules = [ 'javafx.controls' ]
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
test {
useJUnitPlatform()
}
application {
mainClass = 'dotsandboxes.Main'
}