@MavenProjectSources is not usable within another annotation. (original) (raw)

Describe the bug
I can not define @MavenProjectSources as part of an other annotation (using meta annotation). It must be existing explicitly.

To Reproduce

@MavenJupiterExtension @MavenProjectSources(resourcesUsage = NONE) @Retention(RetentionPolicy.RUNTIME) @Inherited public @interface Programmatically { }

and use that annotation:

@Programmatically class MavenProjectSourcesMetaIT {

..

Current behavior
That results in failing the ITs.

Expected behavior
The IT should be executed without any issue.