org.bsc.reporting.model.Child Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of confluence-reporting-maven-plugin Show documentation
Show all versions of confluence-reporting-maven-plugin Show documentation
plugin that document a project (using maven site style) and send result to a live confluence site
[http://www.atlassian.com/software/confluence/]
package org.bsc.reporting.model;
import org.bsc.confluence.model.Site;
import org.apache.maven.plugins.annotations.Parameter;
/**
*
* @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 String.format("child:name=[%s] location=[%s]", getName(), getSource());
}
@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