You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by fe...@apache.org on 2009/11/02 19:42:05 UTC

svn commit: r832030 - /directory/studio-plugin/trunk/src/main/java/org/apache/directory/studio/maven/plugins/AbstractStudioMojo.java

Author: felixk
Date: Mon Nov  2 18:42:05 2009
New Revision: 832030

URL: http://svn.apache.org/viewvc?rev=832030&view=rev
Log:
Definitely not a problem of different maven versions but simple a error made by me when fixing possible deprecations!

BTW, I'm having trouble building Studio with the newly released Studio Maven Plugin. 
"[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Internal error in the plugin manager executing goal 'org.apache.directory.studio:studio-maven-plugin:1.0.3:prepare-jar-package': Unable to find the mojo 'org.apache.directory.studio:studio-maven-plugin:1.0.3:prepare-jar-package' in the plugin 'org.apache.directory.studio:studio-maven-plugin'
Component descriptor cannot be found in the component repository: component.org.apache.maven.artifact.resolver.ArtifactResolver. "

Modified:
    directory/studio-plugin/trunk/src/main/java/org/apache/directory/studio/maven/plugins/AbstractStudioMojo.java

Modified: directory/studio-plugin/trunk/src/main/java/org/apache/directory/studio/maven/plugins/AbstractStudioMojo.java
URL: http://svn.apache.org/viewvc/directory/studio-plugin/trunk/src/main/java/org/apache/directory/studio/maven/plugins/AbstractStudioMojo.java?rev=832030&r1=832029&r2=832030&view=diff
==============================================================================
--- directory/studio-plugin/trunk/src/main/java/org/apache/directory/studio/maven/plugins/AbstractStudioMojo.java (original)
+++ directory/studio-plugin/trunk/src/main/java/org/apache/directory/studio/maven/plugins/AbstractStudioMojo.java Mon Nov  2 18:42:05 2009
@@ -66,7 +66,7 @@
     /**
      * To look up Archiver/UnArchiver implementations
      * 
-     * @component role="component.org.codehaus.plexus.archiver.manager.ArchiverManager"
+     * @component role="org.codehaus.plexus.archiver.manager.ArchiverManager"
      * @required
      * @readonly
      */
@@ -84,7 +84,7 @@
     /**
      * Used to look up Artifacts in the remote repository.
      * 
-     * @component role="component.org.apache.maven.artifact.factory.ArtifactFactory"
+     * @component role="org.apache.maven.artifact.factory.ArtifactFactory"
      * @required
      * @readonly
      */
@@ -93,7 +93,7 @@
     /**
      * Used to look up Artifacts in the remote repository.
      * 
-     * @component role="component.org.apache.maven.artifact.resolver.ArtifactResolver"
+     * @component role="org.apache.maven.artifact.resolver.ArtifactResolver"
      * @required
      * @readonly
      */
@@ -251,7 +251,7 @@
 
 
     /**
-     * Resolves the Artifact from the remote repository if nessessary. If no
+     * Resolves the Artifact from the remote repository if necessary. If no
      * version is specified, it will be retrieved from the dependency list or
      * from the DependencyManagement section of the pom.
      *