Replaced Strings in plots by Names

This commit is contained in:
Alexander Nozik 2017-11-02 20:08:53 +03:00
parent 1840e68ff5
commit 52afce60b6
5 changed files with 3 additions and 65 deletions

View File

@ -1,6 +1,5 @@
buildscript {
ext.kotlin_version = '1.1.51'
ext.kotlin_version = '1.1.4-2'
repositories {
mavenCentral()
@ -26,7 +25,7 @@ dependencies {
compile project(':numass-client')
compile "hep.dataforge:plots-jfc" // project(':dataforge-plots:plots-jfc')
compile "hep.dataforge:dataforge-control" //project(':dataforge-control')
compile "hep.dataforge:kodex-fx"
compile "hep.dataforge:kodex-gui"
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
}
@ -74,16 +73,3 @@ task distAll(dependsOn: installAll, type: Zip) {
from "$buildDir/install/numass-control"
}
repositories {
mavenCentral()
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}

View File

@ -1,5 +1,4 @@
apply plugin: 'application'
apply plugin: 'kotlin'
version = "0.4.0"
@ -11,27 +10,4 @@ mainClassName = mainClass
dependencies {
compile project(':numass-control')
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
}
buildscript {
ext.kotlin_version = '1.1.51'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
repositories {
mavenCentral()
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}

View File

@ -1,5 +1,4 @@
apply plugin: 'application'
apply plugin: 'kotlin'
version = "0.5.0"
@ -10,7 +9,6 @@ mainClassName = mainClass
dependencies {
compile project(':numass-control')
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
}
task testDevice(dependsOn: classes, type: JavaExec) {
@ -19,26 +17,4 @@ task testDevice(dependsOn: classes, type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
description "Start application in debug mode with default virtual port"
group "test"
}
buildscript {
ext.kotlin_version = '1.1.51'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
repositories {
mavenCentral()
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}

View File

@ -33,7 +33,7 @@ dependencies {
compile "hep.dataforge:dataforge-minuit" //project(':dataforge-stat:dataforge-minuit')
compile "hep.dataforge:grind-terminal" //project(':dataforge-grind:grind-terminal')
compile "hep.dataforge:kmath"
compile "hep.dataforge:kodex-fx"
compile "hep.dataforge:kodex-gui"
// https://mvnrepository.com/artifact/org.ehcache/ehcache
compile group: 'org.ehcache', name: 'ehcache', version: '3.4.0'

View File

@ -24,7 +24,7 @@ compileKotlin.kotlinOptions.jvmTarget = "1.8"
dependencies {
compile project(':numass-core')
compile "hep.dataforge:plots-jfc" //project(':dataforge-plots:plots-jfc')
compile "hep.dataforge:kodex-fx"
compile "hep.dataforge:kodex-gui"
compile 'com.jcraft:jsch:0.1.54'
}