1 Star 23 Fork 2

Thoughtworks / intellij-rainbow-fart

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 2.09 KB
一键复制 编辑 原始数据 按行查看 历史
张志豪 提交于 2020-09-23 20:05 . Fix #41 java.lang.NoSuchMethodError
buildscript {
repositories {
mavenLocal()
gradlePluginPortal()
maven { url "https://maven-central.storage-download.googleapis.com/repos/central/data/" }
maven { url "https://maven.aliyun.com/nexus/content/groups/public/" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "de.undercouch:gradle-download-task:4.0.2"
}
}
plugins {
id "org.jetbrains.intellij" version "0.4.20"
id "com.adarshr.test-logger" version "2.0.0"
id "de.undercouch.download" version "4.0.2"
id "org.jetbrains.kotlin.jvm" version "1.3.71"
id "idea"
}
testlogger {
theme 'mocha'
}
repositories {
mavenLocal()
maven { url "https://maven-central.storage-download.googleapis.com/repos/central/data/" }
maven { url "https://maven.aliyun.com/nexus/content/groups/public/" }
maven { url "https://repo.eclipse.org/content/groups/releases/" }
maven { url "https://www.jetbrains.com/intellij-repository/releases" }
maven { url "https://www.jetbrains.com/intellij-repository/snapshots" }
}
intellij {
pluginName name
version ideaVersion
updateSinceUntilBuild = false
}
publishPlugin {
def authenticationToken = "$System.env.token"
token authenticationToken
channels publishChannels
}
idea {
project {
jdkName = javaVersion
languageLevel = javaVersion
}
}
dependencies {
implementation("org.eclipse.mylyn.github:org.eclipse.egit.github.core:5.5.0.201909110433-r") {
exclude module: "gson"
}
implementation('io.timeandspace:cron-scheduler:0.1')
implementation('javazoom:jlayer:1.0.1')
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.10.+") {
exclude module: "kotlin-stdlib"
exclude module: "kotlin-reflect"
}
}
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
[compileKotlin, compileTestKotlin]*.kotlinOptions {
languageVersion = kotlinLanguageVersion
apiVersion = kotlinTargetVersion
jvmTarget = javaVersion
freeCompilerArgs = ["-Xskip-runtime-version-check"]
}
Kotlin
1
https://gitee.com/thoughtworks/intellij-rainbow-fart.git
git@gitee.com:thoughtworks/intellij-rainbow-fart.git
thoughtworks
intellij-rainbow-fart
intellij-rainbow-fart
master

搜索帮助