org.jbake.maven.InlineMojo Maven / Gradle / Ivy
package org.jbake.maven;
/*
* Copyright 2013 ingenieux Labs
*
* Licensed 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.
*/
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import static spark.Spark.awaitInitialization;
import static spark.Spark.externalStaticFileLocation;
import static spark.Spark.init;
import static spark.Spark.ipAddress;
import static spark.Spark.port;
import static spark.Spark.stop;
/**
* Runs jbake on a folder while watching and serving a folder with it
*/
@Mojo(name = "inline", requiresDirectInvocation = true, requiresProject = false)
public class InlineMojo extends WatchMojo {
/**
* Listen Port
*/
@Parameter(property = "jbake.listenAddress", defaultValue = "127.0.0.1")
private String listenAddress;
/**
* Index File
*/
@Parameter(property = "jbake.indexFile", defaultValue = "index.html")
private String indexFile;
/**
* Listen Port
*/
@Parameter(property = "jbake.port", defaultValue = "8080")
private Integer port;
protected void stopServer() throws MojoExecutionException {
stop();
}
protected void initServer() throws MojoExecutionException {
externalStaticFileLocation(outputDirectory.getPath());
ipAddress(listenAddress);
port(this.port);
init();
awaitInitialization();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy