blob: 6ecc09816f96d0067d61c0e678afe6c2f9e6257d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.sling.maven.bundlesupport;
import java.io.File;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
/**
* Install a local OSGi bundle file to a running Sling instance.
* For details refer to <a href="bundle-installation.html">Bundle Installation</a>.
*/
@Mojo(name = "install", defaultPhase = LifecyclePhase.INSTALL)
public class BundleInstallMojo extends AbstractBundleInstallMojo {
/**
* Whether to skip this step even though it has been configured in the
* project to be executed.
*/
@Parameter(property = "sling.install.skip", defaultValue = "false", required = true)
private boolean skip;
/**
* The path of the bundle file to install.
*/
@Parameter(property = "sling.file", defaultValue = "${project.build.directory}/${project.build.finalName}.jar", required = true)
private File bundleFileName;
@Override
public void execute() throws MojoExecutionException {
// don't do anything, if this step is to be skipped
if (skip) {
getLog().debug("Skipping bundle installation as instructed");
return;
}
super.execute();
}
@Override
protected File getBundleFileName() {
return bundleFileName;
}
}