com.ca.apim.gateway.cagatewayimport.CAGatewayImportBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gateway-import-plugin Show documentation
Show all versions of gateway-import-plugin Show documentation
The gateway-import-plugin enables importing locally generated bundles to an existing running gateway instance.
/*
* Copyright (c) 2018 CA. All rights reserved.
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
package com.ca.apim.gateway.cagatewayimport;
import org.gradle.api.Plugin;
import org.gradle.api.Project;
import org.jetbrains.annotations.NotNull;
public class CAGatewayImportBase implements Plugin {
@Override
public void apply(@NotNull final Project project) {
// The base plugin is meant to define any capabilities.
// Applying the base plugin will make all the Tasks available but you will need to configure them yourself
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy