hello,
I'm trying to use the maven native plugin in order to compile a c++ project
with maven.
In the pom.xml I have added the next entry to obtain the plugin:
<plugin>
<groupId>maven</groupId>
<artifactId>maven-native-plugin</artifactId>
<version>1.1</version>
</plugin>
The plugin is correctly downloaded, but when I try to execute the install
goal I obtain the next error:
The PluginDescriptor for the plugin maven:maven-native-plugin was not found
And it's true that this plugin doesn't contain a plugin.xml file. Is there
any error with this plugin? How I must use this plugin in order to compile a
c++ project?
Thank you.