1 Star 5 Fork 5

RoaringFlame / leeks

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
狸小华 提交于 2022-08-12 10:05 . v2.1.0 release
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.21'
}
group 'com.huage2580'
version '2.1.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'com.github.promeg:tinypinyin:2.0.3' // TinyPinyin核心包,约80KB
compile group: 'org.quartz-scheduler', name: 'quartz', version: '2.3.2', {
exclude group:'com.zaxxer'
exclude group:'org.slf4j' // 与idea自带的冲突
exclude group:'com.mchange'
}
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '2021.1.1'
intellij.updateSinceUntilBuild true
intellij.sameSinceUntilBuild false
}
patchPluginXml {
changeNotes """
v1.1 增加了股票的tab,采用腾讯的行情接口,股票轮询间隔10s <br>
v1.2 支持了港股和美股 示例代码:(sh000001,sh600519,sz000001,hk00700,usAAPL)代码一般可以在各网页端看得到 <br>
v1.3 支持了IDEA 2020.1.3,兼容到`IDEA 2017.3`,修复macOS 行高问题(不确定 <br>
v1.4 增加了隐蔽模式(全拼音和无色涨跌幅
v1.5 增加了股票界面的排序~,可按净值和涨跌幅等列排序
v1.6 样式修改,增加精确净值(当日,上一交易日
v1.7 设置界面样式调整,增加新浪股票接口备选
"""
sinceBuild '173.*' //最低版本限制
untilBuild null //最高版本限制 好像必须指定
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
buildSearchableOptions.enabled = false
Java
1
https://gitee.com/RoaringFlame/leeks.git
git@gitee.com:RoaringFlame/leeks.git
RoaringFlame
leeks
leeks
master

搜索帮助