forked from NPM/numass-framework
Update versions
This commit is contained in:
parent
9a1e9dc996
commit
2baf583473
@ -9,4 +9,4 @@ This project build using [DataForge](http://www.inr.ru/~nozik/dataforge/) framew
|
|||||||
It is intended to fix this problem with public maven repository later.
|
It is intended to fix this problem with public maven repository later.
|
||||||
|
|
||||||
# Requirements #
|
# Requirements #
|
||||||
Project requires JDK 8 with JavaFX for desktop controls (https://www.azul.com/downloads/?version=java-8-lts&package=jdk-fx)
|
Project requires JDK 16 in the system. GUI modules must be compiled on the target OS (linux on linux systems)
|
@ -4,7 +4,7 @@ plugins {
|
|||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = listOf("javafx.controls", "javafx.web")
|
modules = listOf("javafx.controls", "javafx.web")
|
||||||
version = "11"
|
version = "16"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "A tornadofx based kotlin library"
|
description = "A tornadofx based kotlin library"
|
||||||
|
@ -7,7 +7,7 @@ apply plugin: 'kotlin'
|
|||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = ["javafx.controls", "javafx.web"]
|
modules = ["javafx.controls", "javafx.web"]
|
||||||
version = "11"
|
version = "16"
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!hasProperty('mainClass')) {
|
if (!hasProperty('mainClass')) {
|
||||||
|
@ -4,7 +4,7 @@ plugins {
|
|||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = listOf("javafx.controls")
|
modules = listOf("javafx.controls")
|
||||||
version = "11"
|
version = "16"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "dataforge-plots"
|
description = "dataforge-plots"
|
||||||
|
@ -4,7 +4,7 @@ plugins {
|
|||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = listOf("javafx.controls")
|
modules = listOf("javafx.controls")
|
||||||
version = "11"
|
version = "16"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "jFreeChart plugin"
|
description = "jFreeChart plugin"
|
||||||
|
@ -6,7 +6,7 @@ plugins {
|
|||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = ["javafx.controls", "javafx.web"]
|
modules = ["javafx.controls", "javafx.web"]
|
||||||
version = "11"
|
version = "16"
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: "kotlin"
|
apply plugin: "kotlin"
|
||||||
|
@ -7,7 +7,7 @@ plugins {
|
|||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = ["javafx.controls", "javafx.web"]
|
modules = ["javafx.controls", "javafx.web"]
|
||||||
version = "11"
|
version = "16"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ plugins {
|
|||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = ["javafx.controls", "javafx.web"]
|
modules = ["javafx.controls", "javafx.web"]
|
||||||
version = "11"
|
version = "16"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ plugins{
|
|||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = ["javafx.controls", "javafx.web"]
|
modules = ["javafx.controls", "javafx.web"]
|
||||||
version = "11"
|
version = "16"
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'application'
|
apply plugin: 'application'
|
||||||
@ -22,7 +22,7 @@ dependencies {
|
|||||||
}
|
}
|
||||||
|
|
||||||
application{
|
application{
|
||||||
mainClassName("inr.numass.control.cryotemp.PKT8App")
|
mainClassName = "inr.numass.control.cryotemp.PKT8AppKt"
|
||||||
}
|
}
|
||||||
|
|
||||||
task testDevice(dependsOn: classes, type: JavaExec) {
|
task testDevice(dependsOn: classes, type: JavaExec) {
|
||||||
|
@ -18,6 +18,7 @@ package inr.numass.control.cryotemp
|
|||||||
import hep.dataforge.meta.Meta
|
import hep.dataforge.meta.Meta
|
||||||
import hep.dataforge.meta.MetaUtils
|
import hep.dataforge.meta.MetaUtils
|
||||||
import inr.numass.control.NumassControlApplication
|
import inr.numass.control.NumassControlApplication
|
||||||
|
import javafx.application.Application
|
||||||
import javafx.stage.Stage
|
import javafx.stage.Stage
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -38,3 +39,9 @@ class PKT8App : NumassControlApplication<PKT8Device>() {
|
|||||||
.orElseThrow{RuntimeException("Temperature measurement configuration not found")}
|
.orElseThrow{RuntimeException("Temperature measurement configuration not found")}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun main() {
|
||||||
|
Application.launch(PKT8App::class.java)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ plugins{
|
|||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = ["javafx.controls", "javafx.web"]
|
modules = ["javafx.controls", "javafx.web"]
|
||||||
version = "11"
|
version = "16"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ plugins{
|
|||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = ["javafx.controls", "javafx.web"]
|
modules = ["javafx.controls", "javafx.web"]
|
||||||
version = "11"
|
version = "16"
|
||||||
}
|
}
|
||||||
|
|
||||||
version = "0.3.0"
|
version = "0.3.0"
|
||||||
|
@ -5,15 +5,14 @@ plugins{
|
|||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = ["javafx.controls", "javafx.web"]
|
modules = ["javafx.controls", "javafx.web"]
|
||||||
version = "11"
|
version = "16"
|
||||||
}
|
}
|
||||||
|
|
||||||
version = "0.4.0"
|
version = "0.4.0"
|
||||||
|
|
||||||
if (!hasProperty('mainClass')) {
|
application{
|
||||||
ext.mainClass = 'inr.numass.control.msp.MspApp'
|
mainClassName = "inr.numass.control.msp.MspAppKt"
|
||||||
}
|
}
|
||||||
mainClassName = mainClass
|
|
||||||
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -18,6 +18,7 @@ package inr.numass.control.msp
|
|||||||
import hep.dataforge.meta.Meta
|
import hep.dataforge.meta.Meta
|
||||||
import hep.dataforge.meta.MetaUtils
|
import hep.dataforge.meta.MetaUtils
|
||||||
import inr.numass.control.NumassControlApplication
|
import inr.numass.control.NumassControlApplication
|
||||||
|
import javafx.application.Application
|
||||||
import javafx.stage.Stage
|
import javafx.stage.Stage
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -39,3 +40,9 @@ class MspApp : NumassControlApplication<MspDevice>() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun main() {
|
||||||
|
Application.launch(MspApp::class.java)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ plugins{
|
|||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = ["javafx.controls", "javafx.web"]
|
modules = ["javafx.controls", "javafx.web"]
|
||||||
version = "11"
|
version = "16"
|
||||||
}
|
}
|
||||||
|
|
||||||
version = "0.6.0"
|
version = "0.6.0"
|
||||||
@ -15,7 +15,7 @@ dependencies {
|
|||||||
}
|
}
|
||||||
|
|
||||||
application{
|
application{
|
||||||
mainClassName("inr.numass.control.readvac.ReadVac")
|
mainClassName = "inr.numass.control.readvac.ReadVacKt"
|
||||||
}
|
}
|
||||||
|
|
||||||
task testDevice(dependsOn: classes, type: JavaExec) {
|
task testDevice(dependsOn: classes, type: JavaExec) {
|
||||||
|
@ -8,6 +8,7 @@ package inr.numass.control.readvac
|
|||||||
import hep.dataforge.meta.Meta
|
import hep.dataforge.meta.Meta
|
||||||
import hep.dataforge.meta.MetaUtils
|
import hep.dataforge.meta.MetaUtils
|
||||||
import inr.numass.control.NumassControlApplication
|
import inr.numass.control.NumassControlApplication
|
||||||
|
import javafx.application.Application
|
||||||
import javafx.stage.Stage
|
import javafx.stage.Stage
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -30,5 +31,9 @@ class ReadVac : NumassControlApplication<VacCollectorDevice>() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun main() {
|
||||||
|
Application.launch(ReadVac::class.java)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ plugins {
|
|||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = ["javafx.controls", "javafx.web"]
|
modules = ["javafx.controls", "javafx.web"]
|
||||||
version = "11"
|
version = "16"
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
|
@ -8,7 +8,7 @@ plugins {
|
|||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
modules = listOf("javafx.graphics", "javafx.controls", "javafx.web")
|
modules = listOf("javafx.graphics", "javafx.controls", "javafx.web")
|
||||||
version = "11"
|
version = "16"
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
Loading…
Reference in New Issue
Block a user