代码拉取完成,页面将自动刷新
apply plugin: 'java-library'
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'signing'
apply from: 'gradle/local-deploy.gradle'
apply from: 'gradle/release.gradle'
repositories {
jcenter()
flatDir {
dirs '/home/vincent/Github/DarkStackOverflowTheme/build/libs'
dirs '/home/vincent/Github/jiconfont-google_material_design_icons/target'
}
}
dependencies {
implementation 'org.swinglabs:swingx:1.6.1'
implementation 'com.github.jiconfont:jiconfont-swing:1.0.1'
//Slf4j configuration
testCompile 'ch.qos.logback:logback-classic:1.2.3'
testCompile 'ch.qos.logback:logback-core:1.2.3'
testCompile 'org.slf4j:slf4j-api:1.7.25'
// Use JUnit test framework
testCompile 'junit:junit:4.12'
testCompile group: 'org.assertj', name: 'assertj-swing-junit', version: '3.9.2'
testCompile 'io.github.material-ui-swing:DarkStackOverflowTheme:0.0.1-rc2'
}
allprojects {
apply plugin: 'java'
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:deprecation,unchecked"
}
}
sourceCompatibility = "${JDK_VERSION}"
targetCompatibility = "${JDK_VERSION}"
}
jar {
archiveVersion.set(VERSION as String)
inputs.property("moduleName", MODULE_NAME)
manifest {
attributes 'Automatic-Module-Name': MODULE_NAME
}
}
task jarWithDependencies(type: Jar) {
archiveVersion.set(VERSION as String)
archiveClassifier.set('with-dependencies')
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
with jar
}
uploadArchives.onlyIf { property('RELEASE_ENABLE') == 'true' }
signArchives.onlyIf { property('RELEASE_ENABLE') == 'true' }
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。