mirror of https://github.com/apache/maven.git
Initial revision
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163361 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
49e98f5f71
commit
7b7f7659d8
|
@ -0,0 +1,26 @@
|
||||||
|
<project>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<parent>
|
||||||
|
<groupId>maven</groupId>
|
||||||
|
<artifactId>maven-component</artifactId>
|
||||||
|
<version>2.0-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
<groupId>maven</groupId>
|
||||||
|
<artifactId>maven-reporting-api</artifactId>
|
||||||
|
<version>2.0-SNAPSHOT</version>
|
||||||
|
<inceptionYear>2005</inceptionYear>
|
||||||
|
<package>org.apache.maven.reporting</package>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>doxia</groupId>
|
||||||
|
<artifactId>doxia-core</artifactId>
|
||||||
|
<version>1.0-alpha-2-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>3.8.1</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
|
@ -0,0 +1,33 @@
|
||||||
|
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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Manage the set of available reports.
|
||||||
|
*
|
||||||
|
* @author Brett Porter
|
||||||
|
* @version $Id$
|
||||||
|
*/
|
||||||
|
public class DefaultMavenReportManager
|
||||||
|
implements MavenReportManager
|
||||||
|
{
|
||||||
|
public MavenReport getReport( String name )
|
||||||
|
{
|
||||||
|
// TODO: return the report
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The basis for a Maven report.
|
||||||
|
*
|
||||||
|
* @author Brett Porter
|
||||||
|
* @version $Id$
|
||||||
|
*/
|
||||||
|
public interface MavenReport
|
||||||
|
{
|
||||||
|
String ROLE = MavenReport.class.getName();
|
||||||
|
|
||||||
|
void execute( Sink sink )
|
||||||
|
throws MavenReportException;
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An exception occurring during the execution of a Maven report.
|
||||||
|
*
|
||||||
|
* @author Brett Porter
|
||||||
|
* @version $Id$
|
||||||
|
*/
|
||||||
|
public class MavenReportException extends Exception
|
||||||
|
{
|
||||||
|
public MavenReportException( String msg, Exception e )
|
||||||
|
{
|
||||||
|
super( msg, e );
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Manage the set of available reports.
|
||||||
|
*
|
||||||
|
* @author Brett Porter
|
||||||
|
* @version $Id$
|
||||||
|
*/
|
||||||
|
public interface MavenReportManager
|
||||||
|
{
|
||||||
|
String ROLE = MavenReportManager.class.getName();
|
||||||
|
|
||||||
|
MavenReport getReport( String name );
|
||||||
|
}
|
Loading…
Reference in New Issue