Add dependency notice, unsupported gradle settings
This commit is contained in:
parent
dd11e6d69e
commit
11e501a7c4
2 changed files with 16 additions and 3 deletions
|
@ -75,9 +75,7 @@ allprojects {
|
||||||
nyx {
|
nyx {
|
||||||
// Project information
|
// Project information
|
||||||
info {
|
info {
|
||||||
name = this@allprojects.name
|
|
||||||
group = "de.staropensource.engine"
|
group = "de.staropensource.engine"
|
||||||
module = this@allprojects.name
|
|
||||||
version = buildString {
|
version = buildString {
|
||||||
append(property("versionRelease") as String)
|
append(property("versionRelease") as String)
|
||||||
append("-")
|
append("-")
|
||||||
|
@ -237,7 +235,7 @@ allprojects {
|
||||||
dateFormatTimeZone = "UTC"
|
dateFormatTimeZone = "UTC"
|
||||||
}
|
}
|
||||||
|
|
||||||
// -> Add input
|
// -> Copy task
|
||||||
tasks.register("copyGitProperties") {
|
tasks.register("copyGitProperties") {
|
||||||
dependsOn(tasks.generateGitProperties)
|
dependsOn(tasks.generateGitProperties)
|
||||||
inputs.file("${this@allprojects.projectDir}/build/resources/main/git.properties")
|
inputs.file("${this@allprojects.projectDir}/build/resources/main/git.properties")
|
||||||
|
@ -258,6 +256,7 @@ allprojects {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Gradle properties
|
// Gradle properties
|
||||||
|
// -> Copy task
|
||||||
tasks.register("copyGradleProperties") {
|
tasks.register("copyGradleProperties") {
|
||||||
inputs.file("${rootProject.projectDir.path}/gradle.properties")
|
inputs.file("${rootProject.projectDir.path}/gradle.properties")
|
||||||
|
|
||||||
|
|
|
@ -17,12 +17,26 @@
|
||||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
### IMPORTANT NOTICE
|
||||||
|
### We handle dependencies in here instead
|
||||||
|
### of using version catalogs as the engine
|
||||||
|
### has the ability to read, provide and
|
||||||
|
### compare dependency information. Using
|
||||||
|
### version catalogs would require us to
|
||||||
|
### depend on a parser just for extracting
|
||||||
|
### information about dependencies. This
|
||||||
|
### is not a bug, it's an actual feature.
|
||||||
|
|
||||||
# Gradle properties
|
# Gradle properties
|
||||||
org.gradle.caching=true
|
org.gradle.caching=true
|
||||||
org.gradle.configureondemand=true
|
org.gradle.configureondemand=true
|
||||||
org.gradle.jvmargs=-Xmx1G -Xms1G -XX:MaxMetaspaceSize=512M -XX:+HeapDumpOnOutOfMemoryError -Duser.language=en -Duser.country=US -Dfile.encoding=UTF-8
|
org.gradle.jvmargs=-Xmx1G -Xms1G -XX:MaxMetaspaceSize=512M -XX:+HeapDumpOnOutOfMemoryError -Duser.language=en -Duser.country=US -Dfile.encoding=UTF-8
|
||||||
org.gradle.parallel=true
|
org.gradle.parallel=true
|
||||||
org.gradle.priority=normal
|
org.gradle.priority=normal
|
||||||
|
# -> Unsupported
|
||||||
|
# We will at some point in the future
|
||||||
|
org.gradle.configuration-cache=false
|
||||||
|
org.gradle.unsafe.isolated-projects=false
|
||||||
|
|
||||||
# Versioning
|
# Versioning
|
||||||
versionCodename=Versneld
|
versionCodename=Versneld
|
||||||
|
|
Loading…
Reference in a new issue