You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should be possible to have mojos implemented in a different subproject of a multi project build. When applied to a project the plugin should extract mojo descriptors form those projects, either via project dependencies or via a dedicated API:
mavenPlugin {
mojos {
from project("mojo-project") // extracts mojos from the main source set of that project
from project("mojo-in-sourceset") {
sourceSet = sourceSets.mojo // use the mojo source set from that project
}
}
}
The text was updated successfully, but these errors were encountered:
configuration for mojo implementations in other subprojects of a multi project
build. If mojos are found they are added to the resulting plugin descriptor.
Resolves#3
It should be possible to have mojos implemented in a different subproject of a multi project build. When applied to a project the plugin should extract mojo descriptors form those projects, either via project dependencies or via a dedicated API:
The text was updated successfully, but these errors were encountered: