mirror of https://github.com/apache/maven.git
set eol style
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@220011 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5a0904e9fd
commit
2259cea946
|
@ -1,54 +1,54 @@
|
|||
package org.apache.maven.reporting;
|
||||
|
||||
/*
|
||||
* Copyright 2005 The Apache Software Foundation.
|
||||
*
|
||||
* 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.codehaus.doxia.sink.Sink;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.Locale;
|
||||
|
||||
/**
|
||||
* The basis for a Maven report.
|
||||
*
|
||||
* @author Brett Porter
|
||||
* @author <a href="evenisse@apache.org">Emmanuel Venisse</a>
|
||||
* @version $Id: MavenReport.java 163376 2005-02-23 00:06:06Z brett $
|
||||
*/
|
||||
public interface MavenReport
|
||||
{
|
||||
String ROLE = MavenReport.class.getName();
|
||||
|
||||
String CATEGORY_PROJECT_INFORMATION = "Project Info";
|
||||
|
||||
String CATEGORY_PROJECT_REPORTS = "Project Reports";
|
||||
|
||||
void generate( Sink sink, Locale locale )
|
||||
throws MavenReportException;
|
||||
|
||||
String getOutputName();
|
||||
|
||||
String getName( Locale locale );
|
||||
|
||||
String getCategoryName();
|
||||
|
||||
String getDescription( Locale locale );
|
||||
|
||||
// TODO: remove?
|
||||
void setReportOutputDirectory( File outputDirectory );
|
||||
|
||||
File getReportOutputDirectory();
|
||||
}
|
||||
package org.apache.maven.reporting;
|
||||
|
||||
/*
|
||||
* Copyright 2005 The Apache Software Foundation.
|
||||
*
|
||||
* 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.codehaus.doxia.sink.Sink;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.Locale;
|
||||
|
||||
/**
|
||||
* The basis for a Maven report.
|
||||
*
|
||||
* @author Brett Porter
|
||||
* @author <a href="evenisse@apache.org">Emmanuel Venisse</a>
|
||||
* @version $Id: MavenReport.java 163376 2005-02-23 00:06:06Z brett $
|
||||
*/
|
||||
public interface MavenReport
|
||||
{
|
||||
String ROLE = MavenReport.class.getName();
|
||||
|
||||
String CATEGORY_PROJECT_INFORMATION = "Project Info";
|
||||
|
||||
String CATEGORY_PROJECT_REPORTS = "Project Reports";
|
||||
|
||||
void generate( Sink sink, Locale locale )
|
||||
throws MavenReportException;
|
||||
|
||||
String getOutputName();
|
||||
|
||||
String getName( Locale locale );
|
||||
|
||||
String getCategoryName();
|
||||
|
||||
String getDescription( Locale locale );
|
||||
|
||||
// TODO: remove?
|
||||
void setReportOutputDirectory( File outputDirectory );
|
||||
|
||||
File getReportOutputDirectory();
|
||||
}
|
||||
|
|
|
@ -1,208 +1,208 @@
|
|||
package org.apache.maven.reporting;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2005 The Apache Software Foundation.
|
||||
*
|
||||
* 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.AbstractMojo;
|
||||
import org.apache.maven.plugin.MojoExecutionException;
|
||||
import org.apache.maven.project.MavenProject;
|
||||
import org.codehaus.doxia.module.xhtml.XhtmlSink;
|
||||
import org.codehaus.doxia.sink.Sink;
|
||||
import org.codehaus.doxia.site.renderer.SiteRenderer;
|
||||
import org.codehaus.plexus.util.IOUtil;
|
||||
import org.codehaus.plexus.util.StringInputStream;
|
||||
import org.codehaus.plexus.util.StringUtils;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.util.HashMap;
|
||||
import java.util.Locale;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* The basis for a Maven report.
|
||||
*
|
||||
* @author <a href="evenisse@apache.org">Emmanuel Venisse</a>
|
||||
* @version $Id: MavenReport.java 163376 2005-02-23 00:06:06Z brett $
|
||||
*/
|
||||
public abstract class AbstractMavenReport
|
||||
extends AbstractMojo
|
||||
implements MavenReport
|
||||
{
|
||||
/**
|
||||
* @todo share, use default excludes from plexus utils.
|
||||
*/
|
||||
protected static final String[] DEFAULT_EXCLUDES = {// Miscellaneous typical temporary files
|
||||
"**/*~", "**/#*#", "**/.#*", "**/%*%", "**/._*",
|
||||
|
||||
// CVS
|
||||
"**/CVS", "**/CVS/**", "**/.cvsignore",
|
||||
|
||||
// SCCS
|
||||
"**/SCCS", "**/SCCS/**",
|
||||
|
||||
// Visual SourceSafe
|
||||
"**/vssver.scc",
|
||||
|
||||
// Subversion
|
||||
"**/.svn", "**/.svn/**",
|
||||
|
||||
// Mac
|
||||
"**/.DS_Store"};
|
||||
|
||||
private Sink sink;
|
||||
|
||||
private Locale locale = Locale.ENGLISH;
|
||||
|
||||
protected abstract SiteRenderer getSiteRenderer();
|
||||
|
||||
protected abstract String getOutputDirectory();
|
||||
|
||||
protected abstract MavenProject getProject();
|
||||
|
||||
private File reportOutputDirectory;
|
||||
|
||||
/**
|
||||
* @see org.apache.maven.plugin.Mojo#execute()
|
||||
*/
|
||||
public void execute()
|
||||
throws MojoExecutionException
|
||||
{
|
||||
try
|
||||
{
|
||||
String outputDirectory = getOutputDirectory();
|
||||
|
||||
XhtmlSink sink = getSiteRenderer().createSink( new File( outputDirectory ), getOutputName() + ".html",
|
||||
outputDirectory, getSiteDescriptor(), "maven" );
|
||||
|
||||
generate( sink, Locale.ENGLISH );
|
||||
|
||||
getSiteRenderer().copyResources( outputDirectory, "maven" );
|
||||
}
|
||||
catch ( Exception e )
|
||||
{
|
||||
throw new MojoExecutionException( "An error has occurred in " + getName( locale ) + " report generation.", e );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.apache.maven.reporting.MavenReport#generate(org.codehaus.doxia.sink.Sink, java.util.Locale)
|
||||
* @deprecated
|
||||
*/
|
||||
public void generate( Sink sink, Locale locale )
|
||||
throws MavenReportException
|
||||
{
|
||||
if ( sink == null )
|
||||
{
|
||||
throw new MavenReportException( "You must specify a sink." );
|
||||
}
|
||||
else
|
||||
{
|
||||
this.sink = sink;
|
||||
}
|
||||
|
||||
executeReport( locale );
|
||||
|
||||
closeReport();
|
||||
}
|
||||
|
||||
protected abstract void executeReport( Locale locale )
|
||||
throws MavenReportException;
|
||||
|
||||
protected void closeReport()
|
||||
{
|
||||
}
|
||||
|
||||
public String getCategoryName()
|
||||
{
|
||||
return CATEGORY_PROJECT_REPORTS;
|
||||
}
|
||||
|
||||
private String getReportsMenu()
|
||||
{
|
||||
StringBuffer buffer = new StringBuffer();
|
||||
buffer.append( "<menu name=\"Project Documentation\">\n" );
|
||||
|
||||
buffer.append( " <item name=\"" + getName( locale ) + "\" href=\"/" + getOutputName() + ".html\"/>\n" );
|
||||
|
||||
buffer.append( "</menu>\n" );
|
||||
|
||||
return buffer.toString();
|
||||
}
|
||||
|
||||
private InputStream getSiteDescriptor()
|
||||
throws MojoExecutionException
|
||||
{
|
||||
String siteDescriptorContent = "";
|
||||
|
||||
try
|
||||
{
|
||||
siteDescriptorContent = IOUtil.toString( getClass().getResourceAsStream( "/default-report.xml" ) );
|
||||
}
|
||||
catch ( IOException e )
|
||||
{
|
||||
throw new MojoExecutionException( "The site descriptor cannot be read!", e );
|
||||
}
|
||||
|
||||
Map props = new HashMap();
|
||||
|
||||
props.put( "reports", getReportsMenu() );
|
||||
|
||||
// TODO: interpolate ${project.*} in general
|
||||
|
||||
if ( getProject().getName() != null )
|
||||
{
|
||||
props.put( "project.name", getProject().getName() );
|
||||
}
|
||||
else
|
||||
{
|
||||
props.put( "project.name", "NO_PROJECT_NAME_SET" );
|
||||
}
|
||||
|
||||
if ( getProject().getUrl() != null )
|
||||
{
|
||||
props.put( "project.url", getProject().getUrl() );
|
||||
}
|
||||
else
|
||||
{
|
||||
props.put( "project.url", "NO_PROJECT_URL_SET" );
|
||||
}
|
||||
|
||||
siteDescriptorContent = StringUtils.interpolate( siteDescriptorContent, props );
|
||||
|
||||
return new StringInputStream( siteDescriptorContent );
|
||||
}
|
||||
|
||||
public File getReportOutputDirectory()
|
||||
{
|
||||
if ( reportOutputDirectory == null )
|
||||
{
|
||||
reportOutputDirectory = new File( getOutputDirectory() );
|
||||
}
|
||||
return reportOutputDirectory;
|
||||
}
|
||||
|
||||
public void setReportOutputDirectory( File reportOutputDirectory )
|
||||
{
|
||||
this.reportOutputDirectory = reportOutputDirectory;
|
||||
}
|
||||
|
||||
public Sink getSink()
|
||||
{
|
||||
return sink;
|
||||
}
|
||||
}
|
||||
package org.apache.maven.reporting;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2005 The Apache Software Foundation.
|
||||
*
|
||||
* 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.AbstractMojo;
|
||||
import org.apache.maven.plugin.MojoExecutionException;
|
||||
import org.apache.maven.project.MavenProject;
|
||||
import org.codehaus.doxia.module.xhtml.XhtmlSink;
|
||||
import org.codehaus.doxia.sink.Sink;
|
||||
import org.codehaus.doxia.site.renderer.SiteRenderer;
|
||||
import org.codehaus.plexus.util.IOUtil;
|
||||
import org.codehaus.plexus.util.StringInputStream;
|
||||
import org.codehaus.plexus.util.StringUtils;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.util.HashMap;
|
||||
import java.util.Locale;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* The basis for a Maven report.
|
||||
*
|
||||
* @author <a href="evenisse@apache.org">Emmanuel Venisse</a>
|
||||
* @version $Id: MavenReport.java 163376 2005-02-23 00:06:06Z brett $
|
||||
*/
|
||||
public abstract class AbstractMavenReport
|
||||
extends AbstractMojo
|
||||
implements MavenReport
|
||||
{
|
||||
/**
|
||||
* @todo share, use default excludes from plexus utils.
|
||||
*/
|
||||
protected static final String[] DEFAULT_EXCLUDES = {// Miscellaneous typical temporary files
|
||||
"**/*~", "**/#*#", "**/.#*", "**/%*%", "**/._*",
|
||||
|
||||
// CVS
|
||||
"**/CVS", "**/CVS/**", "**/.cvsignore",
|
||||
|
||||
// SCCS
|
||||
"**/SCCS", "**/SCCS/**",
|
||||
|
||||
// Visual SourceSafe
|
||||
"**/vssver.scc",
|
||||
|
||||
// Subversion
|
||||
"**/.svn", "**/.svn/**",
|
||||
|
||||
// Mac
|
||||
"**/.DS_Store"};
|
||||
|
||||
private Sink sink;
|
||||
|
||||
private Locale locale = Locale.ENGLISH;
|
||||
|
||||
protected abstract SiteRenderer getSiteRenderer();
|
||||
|
||||
protected abstract String getOutputDirectory();
|
||||
|
||||
protected abstract MavenProject getProject();
|
||||
|
||||
private File reportOutputDirectory;
|
||||
|
||||
/**
|
||||
* @see org.apache.maven.plugin.Mojo#execute()
|
||||
*/
|
||||
public void execute()
|
||||
throws MojoExecutionException
|
||||
{
|
||||
try
|
||||
{
|
||||
String outputDirectory = getOutputDirectory();
|
||||
|
||||
XhtmlSink sink = getSiteRenderer().createSink( new File( outputDirectory ), getOutputName() + ".html",
|
||||
outputDirectory, getSiteDescriptor(), "maven" );
|
||||
|
||||
generate( sink, Locale.ENGLISH );
|
||||
|
||||
getSiteRenderer().copyResources( outputDirectory, "maven" );
|
||||
}
|
||||
catch ( Exception e )
|
||||
{
|
||||
throw new MojoExecutionException( "An error has occurred in " + getName( locale ) + " report generation.", e );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.apache.maven.reporting.MavenReport#generate(org.codehaus.doxia.sink.Sink, java.util.Locale)
|
||||
* @deprecated
|
||||
*/
|
||||
public void generate( Sink sink, Locale locale )
|
||||
throws MavenReportException
|
||||
{
|
||||
if ( sink == null )
|
||||
{
|
||||
throw new MavenReportException( "You must specify a sink." );
|
||||
}
|
||||
else
|
||||
{
|
||||
this.sink = sink;
|
||||
}
|
||||
|
||||
executeReport( locale );
|
||||
|
||||
closeReport();
|
||||
}
|
||||
|
||||
protected abstract void executeReport( Locale locale )
|
||||
throws MavenReportException;
|
||||
|
||||
protected void closeReport()
|
||||
{
|
||||
}
|
||||
|
||||
public String getCategoryName()
|
||||
{
|
||||
return CATEGORY_PROJECT_REPORTS;
|
||||
}
|
||||
|
||||
private String getReportsMenu()
|
||||
{
|
||||
StringBuffer buffer = new StringBuffer();
|
||||
buffer.append( "<menu name=\"Project Documentation\">\n" );
|
||||
|
||||
buffer.append( " <item name=\"" + getName( locale ) + "\" href=\"/" + getOutputName() + ".html\"/>\n" );
|
||||
|
||||
buffer.append( "</menu>\n" );
|
||||
|
||||
return buffer.toString();
|
||||
}
|
||||
|
||||
private InputStream getSiteDescriptor()
|
||||
throws MojoExecutionException
|
||||
{
|
||||
String siteDescriptorContent = "";
|
||||
|
||||
try
|
||||
{
|
||||
siteDescriptorContent = IOUtil.toString( getClass().getResourceAsStream( "/default-report.xml" ) );
|
||||
}
|
||||
catch ( IOException e )
|
||||
{
|
||||
throw new MojoExecutionException( "The site descriptor cannot be read!", e );
|
||||
}
|
||||
|
||||
Map props = new HashMap();
|
||||
|
||||
props.put( "reports", getReportsMenu() );
|
||||
|
||||
// TODO: interpolate ${project.*} in general
|
||||
|
||||
if ( getProject().getName() != null )
|
||||
{
|
||||
props.put( "project.name", getProject().getName() );
|
||||
}
|
||||
else
|
||||
{
|
||||
props.put( "project.name", "NO_PROJECT_NAME_SET" );
|
||||
}
|
||||
|
||||
if ( getProject().getUrl() != null )
|
||||
{
|
||||
props.put( "project.url", getProject().getUrl() );
|
||||
}
|
||||
else
|
||||
{
|
||||
props.put( "project.url", "NO_PROJECT_URL_SET" );
|
||||
}
|
||||
|
||||
siteDescriptorContent = StringUtils.interpolate( siteDescriptorContent, props );
|
||||
|
||||
return new StringInputStream( siteDescriptorContent );
|
||||
}
|
||||
|
||||
public File getReportOutputDirectory()
|
||||
{
|
||||
if ( reportOutputDirectory == null )
|
||||
{
|
||||
reportOutputDirectory = new File( getOutputDirectory() );
|
||||
}
|
||||
return reportOutputDirectory;
|
||||
}
|
||||
|
||||
public void setReportOutputDirectory( File reportOutputDirectory )
|
||||
{
|
||||
this.reportOutputDirectory = reportOutputDirectory;
|
||||
}
|
||||
|
||||
public Sink getSink()
|
||||
{
|
||||
return sink;
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,79 +1,79 @@
|
|||
package org.apache.maven.reporting.sink;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2005 The Apache Software Foundation.
|
||||
*
|
||||
* 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 java.io.File;
|
||||
import java.io.InputStream;
|
||||
|
||||
import org.codehaus.doxia.sink.Sink;
|
||||
import org.codehaus.doxia.site.renderer.SiteRenderer;
|
||||
import org.codehaus.plexus.util.StringInputStream;
|
||||
|
||||
/**
|
||||
* @author <a href="evenisse@apache.org">Emmanuel Venisse</a>
|
||||
* @version $Id: MavenReport.java 163376 2005-02-23 00:06:06Z brett $
|
||||
*/
|
||||
public class SinkFactory
|
||||
{
|
||||
private String outputDirectory;
|
||||
|
||||
private String siteDirectory;
|
||||
|
||||
private SiteRenderer siteRenderer;
|
||||
|
||||
private InputStream siteDescriptor;
|
||||
|
||||
private String flavour;
|
||||
|
||||
public void setOutputDirectory( String outputDirectory )
|
||||
{
|
||||
this.outputDirectory = outputDirectory;
|
||||
}
|
||||
|
||||
public void setSiteRenderer( SiteRenderer siteRenderer )
|
||||
{
|
||||
this.siteRenderer = siteRenderer;
|
||||
}
|
||||
|
||||
public void setSiteDirectory( String siteDirectory )
|
||||
{
|
||||
this.siteDirectory = siteDirectory;
|
||||
}
|
||||
|
||||
public void setFlavour( String flavour )
|
||||
{
|
||||
this.flavour = flavour;
|
||||
}
|
||||
|
||||
public void setSiteDescriptor( InputStream siteDescriptor )
|
||||
{
|
||||
this.siteDescriptor = siteDescriptor;
|
||||
}
|
||||
|
||||
public Sink getSink( String outputFileName )
|
||||
throws Exception
|
||||
{
|
||||
InputStream descriptor = siteDescriptor;
|
||||
if ( descriptor == null )
|
||||
{
|
||||
descriptor = new StringInputStream( "" );
|
||||
}
|
||||
|
||||
return siteRenderer.createSink( new File( siteDirectory ), outputFileName, outputDirectory,
|
||||
descriptor, flavour );
|
||||
}
|
||||
}
|
||||
package org.apache.maven.reporting.sink;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2005 The Apache Software Foundation.
|
||||
*
|
||||
* 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 java.io.File;
|
||||
import java.io.InputStream;
|
||||
|
||||
import org.codehaus.doxia.sink.Sink;
|
||||
import org.codehaus.doxia.site.renderer.SiteRenderer;
|
||||
import org.codehaus.plexus.util.StringInputStream;
|
||||
|
||||
/**
|
||||
* @author <a href="evenisse@apache.org">Emmanuel Venisse</a>
|
||||
* @version $Id: MavenReport.java 163376 2005-02-23 00:06:06Z brett $
|
||||
*/
|
||||
public class SinkFactory
|
||||
{
|
||||
private String outputDirectory;
|
||||
|
||||
private String siteDirectory;
|
||||
|
||||
private SiteRenderer siteRenderer;
|
||||
|
||||
private InputStream siteDescriptor;
|
||||
|
||||
private String flavour;
|
||||
|
||||
public void setOutputDirectory( String outputDirectory )
|
||||
{
|
||||
this.outputDirectory = outputDirectory;
|
||||
}
|
||||
|
||||
public void setSiteRenderer( SiteRenderer siteRenderer )
|
||||
{
|
||||
this.siteRenderer = siteRenderer;
|
||||
}
|
||||
|
||||
public void setSiteDirectory( String siteDirectory )
|
||||
{
|
||||
this.siteDirectory = siteDirectory;
|
||||
}
|
||||
|
||||
public void setFlavour( String flavour )
|
||||
{
|
||||
this.flavour = flavour;
|
||||
}
|
||||
|
||||
public void setSiteDescriptor( InputStream siteDescriptor )
|
||||
{
|
||||
this.siteDescriptor = siteDescriptor;
|
||||
}
|
||||
|
||||
public Sink getSink( String outputFileName )
|
||||
throws Exception
|
||||
{
|
||||
InputStream descriptor = siteDescriptor;
|
||||
if ( descriptor == null )
|
||||
{
|
||||
descriptor = new StringInputStream( "" );
|
||||
}
|
||||
|
||||
return siteRenderer.createSink( new File( siteDirectory ), outputFileName, outputDirectory,
|
||||
descriptor, flavour );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>maven</artifactId>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<version>2.0-beta-1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.apache.maven.reporting</groupId>
|
||||
<artifactId>maven-reporting</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<name>Maven Reporting</name>
|
||||
<inceptionYear>2005</inceptionYear>
|
||||
<modules>
|
||||
<module>maven-reporting-api</module>
|
||||
<module>maven-reporting-impl</module>
|
||||
</modules>
|
||||
</project>
|
||||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>maven</artifactId>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<version>2.0-beta-1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.apache.maven.reporting</groupId>
|
||||
<artifactId>maven-reporting</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<name>Maven Reporting</name>
|
||||
<inceptionYear>2005</inceptionYear>
|
||||
<modules>
|
||||
<module>maven-reporting-api</module>
|
||||
<module>maven-reporting-impl</module>
|
||||
</modules>
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue