Hi all,
I am looking for the maven-macker-plugin, if there is one of course!
Indeed, the project website seems to say that there are no version available
yet: http://maven-plugins.sourceforge.net/maven-macker-plugin/downloads.html
I have been googling the web for a few hour now but I only found this
version on repo1:
http://repo1.maven.org/maven2/maven-plugins/maven-macker-plugin/
Unfortunatly I can't figure out how to use it in my project pom.xml. When I
try this in my pom.xml I get the following error:
The pom.xml:
<project>
....
<build>
<plugins>
....
<plugin>
<groupId>maven-plugins</groupId>
<artifactId>maven-macker-plugin</artifactId>
<version>0.4.2</version>
<executions>
<execution>
<goals>
<goal>macker</goal>
</goals>
</execution>
</executions>
</plugin>
....
</plugins>
</build>
....
</project>
The error trace:
ERROR]FATAL ERROR
[INFO]------------------------------------------------------------------------
[INFO]The PluginDescriptor for the plugin maven-plugins:maven-macker-plugin
was not found
[INFO]------------------------------------------------------------------------
[INFO]Trace
java.lang.IllegalStateException: The PluginDescriptor for the plugin
maven-plugins:maven-macker-plugin was not found
at org.apache.maven.plugin.DefaultPluginManager.addPlugin(
DefaultPluginManager.java:294)
at
org.apache.maven.plugin.DefaultPluginManager.verifyVersionedPlugin(
DefaultPluginManager.java:198)
at org.apache.maven.plugin.DefaultPluginManager.verifyPlugin(
DefaultPluginManager.java:163)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.verifyPlugin(
DefaultLifecycleExecutor.java:1328)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.bindPluginToLifecycle(
DefaultLifecycleExecutor.java:1292)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.constructLifecycleMappings
(DefaultLifecycleExecutor.java:1058)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(
DefaultLifecycleExecutor.java:529)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures
(DefaultLifecycleExecutor.java:309)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(
DefaultLifecycleExecutor.java:276)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(
DefaultLifecycleExecutor.java:143)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:393)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:182)
at org.apache.maven.embedder.MavenEmbedder.execute(
MavenEmbedder.java:760)
at org.codehaus.mevenide.netbeans.execute.MavenJavaExecutor.run(
MavenJavaExecutor.java:257)
at org.netbeans.core.execution.RunClassThread.run(
RunClassThread.java:131)
[INFO]------------------------------------------------------------------------
It seems that there might be a problem with a descriptor file but how can i
resolve that?
Regards,
Jeremy