io.freefair.gradle.plugins.maven.war.WarPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-plugin Show documentation
Show all versions of maven-plugin Show documentation
Collection of Maven related Gradle plugins
package io.freefair.gradle.plugins.maven.war;
import org.gradle.api.Plugin;
import org.gradle.api.Project;
public class WarPlugin implements Plugin {
@Override
public void apply(Project project) {
project.getPlugins().apply(org.gradle.api.plugins.WarPlugin.class);
project.getPlugins().apply(WarOverlayPlugin.class);
project.getPlugins().apply(WarArchiveClassesPlugin.class);
project.getPlugins().apply(WarAttachClassesPlugin.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy