Package org.gradle.api.tasks

Source Code of org.gradle.api.tasks.Copy

/*
* Copyright 2010 the original author or authors.
*
* 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.gradle.api.tasks;

import org.gradle.api.internal.file.*;
import org.gradle.api.internal.file.copy.FileCopyActionImpl;
import org.gradle.api.internal.file.copy.FileCopySpecVisitor;

import java.io.File;

/**
* Copies files into a destination directory.  This task can also rename and filter files as it copies.
* The task implements {@link org.gradle.api.file.CopySpec CopySpec} for specifying
* what to copy.
* <p>
* Examples:
* <pre>
* task(mydoc, type:Copy) {
*    from 'src/main/doc'
*    into 'build/target/doc'
* }
*
* task(initconfig, type:Copy) {
*    from('src/main/config') {
*       include '**&#47;*.properties'
*       include '**&#47;*.xml'
*       filter(ReplaceTokens, tokens:[version:'2.3.1'])
*    }
*    from('src/main/config') {
*       exclude '**&#47;*.properties', '**&#47;*.xml' 
*    }
*    from('src/main/languages') {
*       rename 'EN_US_(*.)', '$1'
*    }
*    into 'build/target/config'
*    exclude '**&#47;*.bak'
* }
* </pre>
* @author Steve Appling
*/
public class Copy extends AbstractCopyTask {
    private FileCopyActionImpl copyAction;

    public Copy() {
        FileResolver fileResolver = getServices().get(FileResolver.class);
        copyAction = new FileCopyActionImpl(fileResolver, new FileCopySpecVisitor());
    }

    protected void configureRootSpec() {
        super.configureRootSpec();
        if (getCopyAction().getDestinationDir() == null) {
            File destDir = getDestinationDir();
            if (destDir != null) {
                into(destDir);
            }
        }
    }

    public FileCopyActionImpl getCopyAction() {
        return copyAction;
    }

    public void setCopyAction(FileCopyActionImpl copyAction) {
        this.copyAction = copyAction;
    }

    @OutputDirectory
    public File getDestinationDir() {
        return getCopyAction().getDestinationDir();
    }

    public void setDestinationDir(File destinationDir) {
        into(destinationDir);
    }
}
TOP

Related Classes of org.gradle.api.tasks.Copy

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.