Giuseppe Barbieri
04/25/2025, 3:58 PMorg.jogamp.gluegen:gluegen-rt
, org.jogamp.joal:joal
, etc
code here, I can work around for the configurations and the publications, but the javaComponent
is a problem, or does anyone see a way?Giuseppe Barbieri
04/25/2025, 4:07 PMbuild.gradle.kts
and use the GradleRunner
, somehow similar to the functional tests
settingsFile.writeText(..)
buildFile.writeText(..)
val runner = GradleRunner.create()
runner.forwardOutput()
runner.withPluginClasspath()
runner.withArguments("publish")
runner.withProjectDir(projectDir)
val result = runner.build()
Vampire
04/25/2025, 4:28 PMGiuseppe Barbieri
04/25/2025, 4:43 PMGiuseppe Barbieri
04/25/2025, 4:44 PMGradle TestKit uses the Tooling API for functional testing of your Gradle plugins.
Giuseppe Barbieri
04/25/2025, 4:44 PM