Author: kenney Date: Fri May 5 12:11:07 2006 New Revision: 400146 URL: http://svn.apache.org/viewcvs?rev=400146&view=rev Log: Fixed tabs -> spaces
Modified: maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java Modified: maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java?rev=400146&r1=400145&r2=400146&view=diff ============================================================================== --- maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java (original) +++ maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java Fri May 5 12:11:07 2006 @@ -1,65 +1,65 @@ -package org.apache.maven.plugin.deploy; - -/* - * Copyright 2001-2005 The Apache Software Foundation. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import org.apache.maven.artifact.deployer.ArtifactDeployer; -import org.apache.maven.artifact.repository.ArtifactRepository; -import org.apache.maven.plugin.AbstractMojo; -import org.apache.maven.plugin.MojoExecutionException; - -public abstract class AbstractDeployMojo - extends AbstractMojo -{ - /** - * @parameter expression="${component.org.apache.maven.artifact.deployer.ArtifactDeployer}" - * @required - * @readonly - */ - private ArtifactDeployer deployer; - - /** - * @parameter expression="${localRepository}" - * @required - * @readonly - */ - private ArtifactRepository localRepository; - - public abstract void execute() - throws MojoExecutionException; - - /* Setters and Getters */ - - public ArtifactDeployer getDeployer() - { - return deployer; - } - - public void setDeployer(ArtifactDeployer deployer) - { - this.deployer = deployer; - } - - public ArtifactRepository getLocalRepository() - { - return localRepository; - } - - public void setLocalRepository(ArtifactRepository localRepository) - { - this.localRepository = localRepository; - } -} +package org.apache.maven.plugin.deploy; + +/* + * Copyright 2001-2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import org.apache.maven.artifact.deployer.ArtifactDeployer; +import org.apache.maven.artifact.repository.ArtifactRepository; +import org.apache.maven.plugin.AbstractMojo; +import org.apache.maven.plugin.MojoExecutionException; + +public abstract class AbstractDeployMojo + extends AbstractMojo +{ + /** + * @parameter expression="${component.org.apache.maven.artifact.deployer.ArtifactDeployer}" + * @required + * @readonly + */ + private ArtifactDeployer deployer; + + /** + * @parameter expression="${localRepository}" + * @required + * @readonly + */ + private ArtifactRepository localRepository; + + public abstract void execute() + throws MojoExecutionException; + + /* Setters and Getters */ + + public ArtifactDeployer getDeployer() + { + return deployer; + } + + public void setDeployer(ArtifactDeployer deployer) + { + this.deployer = deployer; + } + + public ArtifactRepository getLocalRepository() + { + return localRepository; + } + + public void setLocalRepository(ArtifactRepository localRepository) + { + this.localRepository = localRepository; + } +}