All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bsc.reporting.model.Child Maven / Gradle / Ivy

Go to download

plugin that document a project (using maven site style) and send result to a live confluence site [http://www.atlassian.com/software/confluence/]

There is a newer version: 8.0-beta1
Show newest version
package org.bsc.reporting.model;

import org.bsc.confluence.model.Site;
import org.apache.maven.plugins.annotations.Parameter;

import static java.lang.String.format;

/**
 * 
 * @author bsorrentino
 *
 */
public class Child extends Site.Page {

    /**
     * 
     */
    //@MojoParameter(defaultValue = "${basedir}/src/site/confluence")
    @Parameter(defaultValue = "${basedir}/src/site/confluence")
    private java.io.File source;

    @Override
    public String toString() {
        //return format("child:name=[%s] location=[%s]", getName(), getSource());
        return format("child:name=[%s]", getName());
    }

//    @Override
//    public final java.io.File getSource() {
//        return source;
//    }

    public final void setSource(java.io.File location) {
        this.source = location;
    }

    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy