com.smartnews.jpa_entity_generator.gradle.EntityGenPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpa-entity-generator Show documentation
Show all versions of jpa-entity-generator Show documentation
Lombok-wired JPA entity source code generator, Gradle and Maven supported.
package com.smartnews.jpa_entity_generator.gradle;
import org.gradle.api.Plugin;
import org.gradle.api.Project;
/**
* entityGen Gradle plugin.
*/
public class EntityGenPlugin implements Plugin {
@Override
public void apply(Project project) {
project.getExtensions().create("entityGen", EntityGenExtension.class);
project.getTasks().create("entityGen", EntityGenTask.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy