You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2011/03/06 22:01:00 UTC

svn commit: r1078569 - /maven/plugins/branches/MSITE-560/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java

Author: hboutemy
Date: Sun Mar  6 21:01:00 2011
New Revision: 1078569

URL: http://svn.apache.org/viewvc?rev=1078569&view=rev
Log:
removed unused attribute

Modified:
    maven/plugins/branches/MSITE-560/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java

Modified: maven/plugins/branches/MSITE-560/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/branches/MSITE-560/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java?rev=1078569&r1=1078568&r2=1078569&view=diff
==============================================================================
--- maven/plugins/branches/MSITE-560/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java (original)
+++ maven/plugins/branches/MSITE-560/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java Sun Mar  6 21:01:00 2011
@@ -24,10 +24,6 @@ import org.apache.maven.model.Site;
 import org.apache.maven.plugin.MojoExecutionException;
 import org.apache.maven.project.MavenProject;
 
-import org.codehaus.plexus.PlexusContainer;
-import org.codehaus.plexus.component.annotations.Requirement;
-
-
 /**
  * Deploys the generated site using <code>scp</code> or <code>file</code>
  * protocol to the site URL specified in the
@@ -49,9 +45,6 @@ public class SiteDeployMojo
 {
     private Site site;
 
-    @Requirement
-    private PlexusContainer container;
-
     @Override
     public String getDeployRepositoryID()
         throws MojoExecutionException