Slackbot
01/06/2023, 2:54 AMJiří Grygerek
01/06/2023, 5:47 PMSlackbot
01/06/2023, 5:47 PMSlackbot
01/06/2023, 6:01 PMDhruv Sharma
01/07/2023, 2:48 PMDhruv Sharma
01/07/2023, 2:49 PMSlackbot
01/07/2023, 2:50 PMJavi
01/07/2023, 3:37 PMinternal inline fun <reified T> Project.property(noinline block: Project.() -> T): Property<T> =
objects.property<T>().convention(project.provider { block(this) })
But I am getting a crash
inline fun property(): compile avoidance is not supported with public inline functions
This is only happening with Gradle TestKit. Testing it in included builds doesn't crash.
Is there any workaround?Slackbot
01/08/2023, 9:14 AMSlackbot
01/08/2023, 2:53 PMSlackbot
01/09/2023, 11:26 AMAG
01/09/2023, 5:08 PMbuild-logic-settings
included build in my pluginManagement
block and I have a convention plugin to configure the build cache inside the project. As I understand from the docs
This configuration precedence does not apply to plugin builds included through pluginManagement as these are loaded before the cache configuration itself.
my plugin won't work in build-logic-settings
, so as a workaround I've applied that plugin directly in build-logic-settings
apply(from = "cache-plugin/src/main/kotlin/convention-cache.settings.gradle.kts")
but after generating a build scan it says that
The build cache configuration of the root build differs from the build cache configuration of the early evaluated ':build-logic-settings' included build
so what's the right way to have the same build cache config?Slackbot
01/09/2023, 6:30 PMSlackbot
01/09/2023, 8:00 PMSlackbot
01/10/2023, 9:22 AMSlackbot
01/10/2023, 11:13 AMSlackbot
01/10/2023, 12:25 PMSlackbot
01/10/2023, 1:02 PMSlackbot
01/10/2023, 1:38 PMSlackbot
01/10/2023, 3:08 PMMatthew Von-Maszewski
01/10/2023, 4:33 PMimplementation "org.boost:boost_program_options:1.67.0" + Platform
I need to know the path were gradle places this library. Need the path for some special linker parameters. Any hints on how to obtain the path?Joseph McCay
01/10/2023, 10:39 PMplugins {
id "com.gradle.plugin-publish" version "0.20.0"
}
pluginBundle {
website = '<https://github.com/i-net-software/JWebAssembly-Gradle>'
vcsUrl = '<https://github.com/i-net-software/JWebAssembly-Gradle>'
description = 'A Gradle plugin for the JWebAssembly compiler. A Java bytecode to WebAssembly converter. It produce the WASM and JavaScript file from your *.java, *.class and/or *.jar files.'
tags = ['jwebassembly', 'webassembly', 'wasm', 'java', 'bytecode', 'compile', 'converter', 'transpiler' ]
plugins {
jwebassemblerPlugin {
id = 'de.inetsoftware.jwebassembly'
displayName = 'Gradle JWebAssembly plugin'
tags = ['jwebassembly', 'webassembly', 'wasm', 'java', 'bytecode', 'compile', 'converter', 'transpiler' ]
}
}
mavenCoordinates {
artifactId = archivesBaseName
}
}
Slackbot
01/10/2023, 10:55 PMSlackbot
01/11/2023, 1:47 AMSlackbot
01/11/2023, 3:30 AMSlackbot
01/11/2023, 11:55 AMArimil
01/11/2023, 12:58 PMbuildSrc/settings.gradle.kts
is not sufficient.Slackbot
01/11/2023, 1:11 PMSlackbot
01/12/2023, 1:19 AMSlackbot
01/12/2023, 5:43 AM