1 Star 4 Fork 2

牧云12 / background-image-rotation

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 3.47 KB
一键复制 编辑 原始数据 按行查看 历史
牧云12 提交于 2022-09-22 23:20 . 适配2022.x
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.6.5'
}
group 'com.muyun'
version '1.1.7'
repositories {
mavenCentral()
}
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
sourceCompatibility = 1.6
targetCompatibility = 1.6
//compileJava.options*.compilerArgs = [
// "-Xlint:serial", "-Xlint:varargs", "-Xlint:cast", "-Xlint:classfile",
// "-Xlint:dep-ann", "-Xlint:divzero", "-Xlint:empty", "-Xlint:finally",
// "-Xlint:overrides", "-Xlint:path", "-Xlint:processing", "-Xlint:static",
// "-Xlint:try", "-Xlint:fallthrough", "-Xlint:rawtypes", "-Xlint:deprecation",
// "-Xlint:unchecked", "-Xlint:-options", "-Werror"
//]
//
//compileTestJava.options*.compilerArgs = [
// "-Xlint:serial", "-Xlint:-varargs", "-Xlint:cast", "-Xlint:classfile",
// "-Xlint:dep-ann", "-Xlint:divzero", "-Xlint:empty", "-Xlint:finally",
// "-Xlint:overrides", "-Xlint:path", "-Xlint:processing", "-Xlint:static",
// "-Xlint:try", "-Xlint:-fallthrough", "-Xlint:-rawtypes", "-Xlint:-deprecation",
// "-Xlint:-unchecked", "-Xlint:-options"
//]
compileJava {
options.encoding = 'UTF-8'
}
compileTestJava {
options.encoding = 'UTF-8'
options.compilerArgs += "-parameters"
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
// See https://www.jetbrains.com/intellij-repository/releases/
intellij {
// type = ['IC', 'IU', 'CL', 'PY', 'PC', 'RD', 'GO', 'JPS']
type = 'IC'
// version '2020.2'
// version '2016.2'
// version '2019.3.5'
// version '2018.3.6'
// version = '2021.3'
version = '2022.2.2'
plugins = ['java']
}
patchPluginXml {
sinceBuild '162'
untilBuild '222.*'
}
runPluginVerifier{
ideVersions = [
// 'IU-2016.2', 'IU-2016.2.1', 'IU-2016.2.2', 'IU-2016.2.3', 'IU-2016.2.4', 'IU-2016.2.5', 'IU-2016.3',
// 'IU-2016.3.1', 'IU-2016.3.2', 'IU-2016.3.3', 'IU-2016.3.4', 'IU-2016.3.5', 'IU-2016.3.6', 'IU-2016.3.7',
'IU-2016.3.8',
// 'IU-2017.1', 'IU-2017.1.1', 'IU-2017.1.2', 'IU-2017.1.3', 'IU-2017.1.4', 'IU-2017.1.5', 'IU-2017.1.6',
// 'IU-2017.2', 'IU-2017.2.1', 'IU-2017.2.2', 'IU-2017.2.3', 'IU-2017.2.4', 'IU-2017.2.5', 'IU-2017.2.6',
// 'IU-2017.2.7', 'IU-2017.3', 'IU-2017.3.1', 'IU-2017.3.2', 'IU-2017.3.3', 'IU-2017.3.4', 'IU-2017.3.5',
// 'IU-2017.3.6',
'IU-2017.3.7',
// 'IU-2018.1', 'IU-2018.1.1', 'IU-2018.1.2', 'IU-2018.1.3', 'IU-2018.1.4', 'IU-2018.1.5', 'IU-2018.1.6',
// 'IU-2018.1.7', 'IU-2018.1.8', 'IU-2018.2', 'IU-2018.2.1', 'IU-2018.2.2', 'IU-2018.2.3', 'IU-2018.2.4',
// 'IU-2018.2.5', 'IU-2018.2.6', 'IU-2018.2.7', 'IU-2018.2.8', 'IU-2018.3', 'IU-2018.3.1', 'IU-2018.3.2',
// 'IU-2018.3.3', 'IU-2018.3.4', 'IU-2018.3.5',
'IU-2018.3.6',
// 'IU-2019.1', 'IU-2019.1.1', 'IU-2019.1.2', 'IU-2019.1.3', 'IU-2019.1.4', 'IU-2019.2', 'IU-2019.2.1',
// 'IU-2019.2.2', 'IU-2019.2.3', 'IU-2019.2.4', 'IU-2019.3', 'IU-2019.3.1', 'IU-2019.3.2', 'IU-2019.3.3',
// 'IU-2019.3.4',
'IU-2019.3.5',
// 'IU-2020.1', 'IU-2020.1.1', 'IU-2020.1.2', 'IU-2020.1.3', 'IU-2020.1.4', 'IU-2020.2', 'IU-2020.2.1',
// 'IU-2020.2.2', 'IU-2020.2.3', 'IU-2020.2.4', 'IU-2020.3', 'IU-2020.3.1', 'IU-2020.3.2',
'IU-2020.3.3',
// 'IU-2021.1',
'IU-2021.2',
'IU-2022.2.2'
]
downloadDirectory 'K:\\jetbrains\\ides'
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/DevilSoul/background-image-rotation.git
git@gitee.com:DevilSoul/background-image-rotation.git
DevilSoul
background-image-rotation
background-image-rotation
master

搜索帮助