1 Star 0 Fork 45

一花一世界 / intellij-gitee

forked from 开源中国 / intellij-gitee 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 1.43 KB
一键复制 编辑 原始数据 按行查看 历史
buildscript {
ext.kotlin_version = '1.3.60'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'org.jetbrains.intellij' version "0.4.11"
}
repositories {
mavenCentral()
}
version = "${version}.${buildNumber}"
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'kotlin'
intellij {
version ideaVersion
plugins 'tasks', 'git4idea'
pluginName 'intellij-gitee'
downloadSources !Boolean.valueOf("$System.env.CI_BUILD")
sameSinceUntilBuild Boolean.valueOf(isEAP)
publishPlugin {
// channels 'eap'
token publishToken
channels 'stable'
}
}
allprojects {
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
compileKotlin {
kotlinOptions {
jvmTarget = javaVersion
}
}
def compilationPackages = ['org/intellij/gitee/build/**']
test {
useJUnit {
exclude compilationPackages
}
testLogging {
exceptionFormat = 'full'
}
}
task testCompilation(type: Test, group: 'Verification', dependsOn: [classes, testClasses]) {
useJUnit {
include compilationPackages
}
testLogging {
exceptionFormat = 'full'
}
}
}
Java
1
https://gitee.com/starsw001/intellij-gitosc.git
git@gitee.com:starsw001/intellij-gitosc.git
starsw001
intellij-gitosc
intellij-gitee
master

搜索帮助