我无法按照http://rqda.r-forge.r-project.org/中的说明在MacOS 10.14.5 Mojave上安装RQDA
我在跑步:
Rstudio(来自Anaconda)R 3.5.1
Java 1.8
Xquartz 2.7.11
GTK + 2.24.17
但是当我尝试安装RQDA软件包时,出现以下错误消息:
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
val springBootVersion = "2.1.5.RELEASE"
java
kotlin("jvm") version embeddedKotlinVersion
kotlin("plugin.spring") version embeddedKotlinVersion
id("org.springframework.boot") version springBootVersion
id("io.spring.dependency-management") version "1.0.7.RELEASE"
}
version = "0.0.1"
group = "com.xxx"
repositories {
jcenter()
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(kotlin("reflect"))
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
implementation(dependencies.platform("org.springframework.cloud:spring-cloud-dependencies:Greenwich.SR1"))
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.cloud:spring-cloud-starter-gateway")
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
runtimeOnly("org.springframework.boot:spring-boot-devtools")
testImplementation("org.springframework.boot:spring-boot-starter-test")
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = "1.8"
}
}
任何帮助将不胜感激!