All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.tool.instrument.javassist.InstrumentTask Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.tool.instrument.javassist;

import org.hibernate.internal.log.DeprecationLogger;
import org.hibernate.tool.enhance.EnhancementTask;

/**
 * This is the legacy Ant-task Hibernate provided historically to
 * perform its old-school bytecode instrumentation.  That has been replaced wholesale
 * with a new approach to bytecode manipulation offering 3 build-time variations for Ant,
 * Maven and Gradle.
 *
 * @author Muga Nishizawa
 * @author Steve Ebersole
 *
 * @deprecated This is the legacy Ant-task Hibernate provided historically to
 * perform its old-school bytecode instrumentation.  That has been replaced wholesale
 * with a new approach to bytecode manipulation offering 3 build-time variations for Ant,
 * Maven and Gradle.
 *
 * @see EnhancementTask
 */
@Deprecated
@SuppressWarnings("unused")
public class InstrumentTask extends EnhancementTask {
	public InstrumentTask() {
		DeprecationLogger.DEPRECATION_LOGGER.logDeprecatedInstrumentTask( InstrumentTask.class, EnhancementTask.class );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy