Mark
Mark
I still am in favor of putting it in the API. The purpose of an API layer is to do this very thing. Hence you will see that existing SDLC...
Is that data readily available in the XLD and UDeploy API's?
By components I mean the Hygieia usage of the word. Basically the pipeline view in the product dashboard would be a collation of all of the pipeline views that each...
@MikeMcQuaid do you have a link to the PR?
If that's the case why close this? It's still an issue.
I believe I may have a solution. I can use the id-logging filter to log what artifacts are processed. I can then compare that list after each run against what...
This should work in a cron so long as none of the files end in .deleted or .log: ``` #!/bin/bash # Compares files in S3 against what have been backed...
It looks like this might have been [fixed](https://github.com/gradle-plugins/toolbox/blob/main/subprojects/gradle-plugin-development/src/main/java/dev/gradleplugins/internal/rules/WireMinimumGradleVersionWithJvmCompatibilityRule.java#L40) on the main branch. There does not appear to be a release yet with these changes though.
It is actually still broken on master. I'm using a java toolchain instead of source/target compatibility ``` java { toolchain { languageVersion = JavaLanguageVersion.of(17) } } ``` The problem is...
This seems to be because the plugin adds the gradle-api dependency to the compileOnlyApi when using Gradle 6.7+ (see [AddGradleApiDependencyToCompileOnlyApiConfiguration](https://github.com/gradle-plugins/toolbox/blame/9ee99294d400b8075d28970a1b2585dfc1422578/subprojects/gradle-plugin-development/src/main/java/dev/gradleplugins/internal/plugins/AddGradleApiDependencyToCompileOnlyApiConfiguration.java#L26)). The compileOnlyApi configuration exports compile dependencies. The compileOnly configuration does...