Is there a example for a extension use maven? #11116
-
I don't know much about Gradle. When I directly execute so can give me a example use maven build? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
No, we don't have one.
where did you execute |
Beta Was this translation helpful? Give feedback.
No, we don't have one.
One thing to be careful when using maven for building the extension is that for
InstrumentationModule
classes gradle build has plugins that modify the compiled class files. If you are not usingInstrumentationModule
in your extension then building with maven should work fine, you'll just have to find a maven plugin that generates the SPI file from@AutoService
annotations or manually generate the. If you wish to useInstrumentationModule
then you will have to implementgetAdditionalHelperClassNames
method.