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
InstrumentationModuleclasses gradle build has plugins that modify the compiled class files. If you are not usingInstrumentationModulein your extension then building with maven should work fine, you'll just have to find a maven plugin that generates the SPI file from@AutoServiceannotations or manually generate the. If you wish to useInstrumentationModulethen you will have to implementgetAdditionalHelperClassNamesmethod.