Launcher/build.gradle

75 lines
1.9 KiB
Groovy
Raw Permalink Normal View History

plugins {
2023-02-25 14:42:17 +03:00
id 'com.github.johnrengelman.shadow' version '7.1.2' apply false
id 'maven-publish'
id 'signing'
2024-03-03 09:39:28 +03:00
id 'org.openjfx.javafxplugin' version '0.1.0' apply false
}
group = 'pro.gravit.launcher'
2024-04-21 09:41:41 +03:00
version = '5.6.1'
apply from: 'props.gradle'
configure(subprojects.findAll { it.name != 'modules' }) {
2019-05-15 14:11:22 +03:00
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'java'
2020-03-01 12:44:14 +03:00
apply plugin: 'java-library'
2019-01-09 11:29:54 +03:00
group = 'pro.gravit'
2019-05-03 14:00:01 +03:00
2019-05-15 14:11:22 +03:00
repositories {
mavenCentral()
2020-03-01 12:44:14 +03:00
maven { url 'https://oss.sonatype.org/content/groups/public' }
2019-05-15 14:11:22 +03:00
maven {
2020-03-01 12:44:14 +03:00
url "https://clojars.org/repo/"
2019-05-15 14:11:22 +03:00
}
2021-03-20 12:49:49 +03:00
maven {
url "https://jcenter.bintray.com/"
}
2021-11-09 10:12:31 +03:00
maven {
url "https://jitpack.io/"
}
2019-05-15 14:11:22 +03:00
}
2020-03-01 12:44:14 +03:00
jar {
duplicatesStrategy = 'EXCLUDE'
}
eclipse {
classpath {
downloadSources = true
downloadJavadoc = true
}
2019-05-15 14:11:22 +03:00
}
2023-04-03 09:04:12 +03:00
tasks.withType(JavaCompile).tap {
configureEach {
options.encoding = "UTF-8"
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
options.incremental = true // one flag, and things will get MUCH faster
2023-05-25 11:33:01 +03:00
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
2023-04-03 09:04:12 +03:00
}
}
}
wrapper {
2019-05-15 14:11:22 +03:00
distributionType = Wrapper.DistributionType.ALL
}
defaultTasks 'build'
if (hasProperty('mavenUsername') && hasProperty('mavenPassword') && hasProperty('mavenReleaseRepository') && hasProperty('mavenSnapshotRepository')) {
publishing {
repositories {
maven {
url = version.endsWith('SNAPSHOT') ? getProperty('mavenSnapshotRepository') : getProperty('mavenReleaseRepository')
credentials {
username getProperty('mavenUsername')
password getProperty('mavenPassword')
}
}
}
}
}