Package org.moxie.ant

Source Code of org.moxie.ant.MxGitTask

/*
* Copyright 2012 James Moger
*
* 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.
*/
package org.moxie.ant;

import java.io.File;

import org.moxie.Dependency;
import org.moxie.utils.JGitUtils;


public class MxGitTask extends MxTask {

  private File repositoryDirectory;

  public void setRepositoryDir(String path) {
    this.repositoryDirectory = new File(path);
  }
 
  public File getRepositoryDir() {
    if (repositoryDirectory == null || !repositoryDirectory.exists()) {
      repositoryDirectory = getBuild().getConfig().getProjectDirectory();
    }
    repositoryDirectory = JGitUtils.findRepositoryDir(repositoryDirectory);
    if (repositoryDirectory == null) {
      getConsole().warn("Failed to determine Git repository folder!");
    }
    return repositoryDirectory;
  }
 
  protected void loadDependencies() {
    loadRuntimeDependencies(getBuild(), new Dependency("mx:jgit"));
  }
}
TOP

Related Classes of org.moxie.ant.MxGitTask

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.