net.bytebuddy.build.gradle.ByteBuddyJarTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of byte-buddy-gradle-plugin Show documentation
Show all versions of byte-buddy-gradle-plugin Show documentation
A plugin for post-processing class files via Byte Buddy in a Gradle build.
The newest version!
/*
* Copyright 2014 - Present Rafael Winterhalter
*
* 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 net.bytebuddy.build.gradle;
import net.bytebuddy.build.Plugin;
import org.gradle.api.tasks.PathSensitive;
import org.gradle.api.tasks.PathSensitivity;
import net.bytebuddy.utility.nullability.MaybeNull;
import org.gradle.api.tasks.*;
import javax.inject.Inject;
import java.io.File;
import java.io.IOException;
/**
* A Byte Buddy task implementation that does not use modern Gradle APIs.
*/
public class ByteBuddyJarTask extends AbstractByteBuddyTask {
/**
* The source jar.
*/
private File source;
/**
* The target jar.
*/
private File target;
/**
* The class path to supply to the plugin engine.
*/
private Iterable classPath;
/**
* A set of classes that is used for discovery of plugins.
*/
@MaybeNull
private Iterable discoverySet;
/**
* Creates a new simple Byte Buddy task.
*/
@Inject
@SuppressWarnings("this-escape")
public ByteBuddyJarTask() {
new ByteBuddyJarTaskExtension(null).configure(this);
}
/**
* Returns the task's source jar.
*
* @return The task's source jar.
*/
@InputFile
@PathSensitive(PathSensitivity.RELATIVE)
public File getSource() {
return source;
}
/**
* Sets the task's source jar.
*
* @param source The task's source jar.
*/
public void setSource(File source) {
this.source = source;
}
/**
* Returns the task's target jar.
*
* @return The task's target jar.
*/
@OutputFile
public File getTarget() {
return target;
}
/**
* Sets the task's target jar.
*
* @param target The task's target jar.
*/
public void setTarget(File target) {
this.target = target;
}
/**
* Returns the class path to supply to the plugin engine.
*
* @return The class path to supply to the plugin engine.
*/
@InputFiles
@CompileClasspath
public Iterable getClassPath() {
return classPath;
}
/**
* Sets the class path to supply to the plugin engine.
*
* @param classPath The class path to supply to the plugin engine.
*/
public void setClassPath(Iterable classPath) {
this.classPath = classPath;
}
/**
* Returns the source set to resolve plugin names from or {@code null} if no such source set is used.
*
* @return The source set to resolve plugin names from or {@code null} if no such source set is used.
*/
@MaybeNull
@InputFiles
@Optional
public Iterable getDiscoverySet() {
return discoverySet;
}
/**
* Defines the source set to resolve plugin names from or {@code null} if no such source set is used.
*
* @param discoverySet The source set to resolve plugin names from or {@code null} if no such source set is used.
*/
public void setDiscoverySet(@MaybeNull Iterable discoverySet) {
this.discoverySet = discoverySet;
}
@Override
protected File source() {
return getSource();
}
@Override
protected File target() {
return getTarget();
}
@Override
protected Iterable classPath() {
return getClassPath();
}
@Override
@MaybeNull
protected Iterable discoverySet() {
return discoverySet;
}
/**
* Applies this task.
*
* @throws IOException If an I/O exception is thrown.
*/
@TaskAction
public void apply() throws IOException {
if (!getSource().equals(getTarget()) && deleteRecursively(getTarget())) {
getLogger().debug("Deleted target jar {}", getTarget());
}
doApply(new Plugin.Engine.Source.ForJarFile(getSource()), new Plugin.Engine.Target.ForJarFile(getTarget()));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy