1 Star 2 Fork 1

wuseal / JsonToKotlinClass

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 932 Bytes
一键复制 编辑 原始数据 按行查看 历史
Seal 提交于 2020-03-25 10:25 . [update]Upgrade version to 3.6.1
buildscript {
ext.kotlin_version = '1.3.61'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id "org.jetbrains.intellij" version "0.4.9"
}
apply plugin: 'idea'
apply plugin: 'kotlin'
apply plugin: 'org.jetbrains.intellij'
group 'wu.seal'
version '3.6.1'
intellij {
version '2017.1'
pluginName 'JsonToKotlinClass'
}
patchPluginXml {
untilBuild ''
}
publishPlugin {
token System.getenv('token')
channels System.getProperty('channels', "")
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testImplementation('com.winterbe:expekt:0.5.0') {
exclude group: "org.jetbrains.kotlin"
}
}
compileKotlin {
kotlinOptions {
languageVersion = "1.3"
}
}
Kotlin
1
https://gitee.com/wuseal/JsonToKotlinClass.git
git@gitee.com:wuseal/JsonToKotlinClass.git
wuseal
JsonToKotlinClass
JsonToKotlinClass
master

搜索帮助