Hello,
I'm developing a maven plugin with a configuration containing an XML String.
However, I would like to get it as a regular String. In my context it is not
possible to use DOM objects as the content undetermined.
Here is an example of such configuration:
<configuration>
<meta>
<component
classname="org.apache.felix.ipojo.arch.ArchCommandImpl"
public="false">
<Provides />
<requires field="m_archs" optional="true" />
<requires field="m_handlers" optional="true"/>
</component>
</meta>
</configuration>
Is it possible to get the "meta" parameter as a regular String ?
Best regards,
Clement