Fix svn properties

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@219087 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Emmanuel Venisse 2005-07-14 20:12:21 +00:00
parent 5de8088b0b
commit 06597924cf
42 changed files with 1268 additions and 1268 deletions

View File

@ -1,136 +1,136 @@
#macro ( banner $id ) #macro ( banner $id )
#set ( $e = $siteDescriptor.getChild( $id ) ) #set ( $e = $siteDescriptor.getChild( $id ) )
#if( $e.getChild( "href" ) ) #if( $e.getChild( "href" ) )
#set ( $link = $e.getChild( "href" ).getValue() ) #set ( $link = $e.getChild( "href" ).getValue() )
<a href="$link" id="$id"> <a href="$link" id="$id">
#else #else
<span id="$id"> <span id="$id">
#end #end
#if( $e.getChild( "src" ) ) #if( $e.getChild( "src" ) )
#set ( $src = $e.getChild( "src" ).getValue() ) #set ( $src = $e.getChild( "src" ).getValue() )
#if ( $e.getChild( "alt" ) ) #if ( $e.getChild( "alt" ) )
#set ( $alt = $e.getChild( "alt" ).getValue() ) #set ( $alt = $e.getChild( "alt" ).getValue() )
#else #else
#set ( $alt = "" ) #set ( $alt = "" )
#end #end
<img src="$src" alt="$alt" /> <img src="$src" alt="$alt" />
#else #else
$e.getChild( "name" ).getValue() $e.getChild( "name" ).getValue()
#end #end
#if( $e.getChild( "href" ) ) #if( $e.getChild( "href" ) )
</a> </a>
#else #else
</span> </span>
#end #end
#end #end
#macro ( links ) #macro ( links )
#set ( $counter = 0 ) #set ( $counter = 0 )
#set ( $links = $siteDescriptor.getChild( "body" ).getChild( "links" ) ) #set ( $links = $siteDescriptor.getChild( "body" ).getChild( "links" ) )
#foreach( $item in $links.getChildren() ) #foreach( $item in $links.getChildren() )
#set ( $counter = $counter + 1 ) #set ( $counter = $counter + 1 )
<a href="$item.getAttribute( "href" )">$item.getAttribute( "name" )</a> <a href="$item.getAttribute( "href" )">$item.getAttribute( "name" )</a>
#if ( $links.getChildCount() > $counter ) #if ( $links.getChildCount() > $counter )
| |
#end #end
#end #end
#end #end
#macro ( menuItem $item ) #macro ( menuItem $item )
#if ( $item.getChildCount() > 0 ) #if ( $item.getChildCount() > 0 )
#if ( $item.getAttribute( "collapse" ) == "true" ) #if ( $item.getAttribute( "collapse" ) == "true" )
#set ( $collapse = "collapsed" ) #set ( $collapse = "collapsed" )
#else #else
#set ( $collapse = "expanded" ) #set ( $collapse = "expanded" )
#end #end
#else #else
#set ( $collapse = "none" ) #set ( $collapse = "none" )
#end #end
#set ( $currentItemHref = $PathTool.calculateLink( $item.getAttribute( "href" ), $relativePath ) ) #set ( $currentItemHref = $PathTool.calculateLink( $item.getAttribute( "href" ), $relativePath ) )
<li class="$collapse"> <li class="$collapse">
#if ( $currentFileName.replaceAll('\\', '/') == $currentItemHref ) #if ( $currentFileName.replaceAll('\\', '/') == $currentItemHref )
<strong><a href="$currentItemHref">$item.getAttribute( "name" )</a></strong> <strong><a href="$currentItemHref">$item.getAttribute( "name" )</a></strong>
#else #else
<a href="$currentItemHref">$item.getAttribute( "name" )</a> <a href="$currentItemHref">$item.getAttribute( "name" )</a>
#end #end
</li> </li>
#if ( $item.getChildren() ) #if ( $item.getChildren() )
#if ( $item.getChildCount() > 0 ) #if ( $item.getChildCount() > 0 )
#if ( $collapse != "collapsed" ) #if ( $collapse != "collapsed" )
<ul> <ul>
#foreach( $subitem in $item.getChildren() ) #foreach( $subitem in $item.getChildren() )
#menuItem( $subitem ) #menuItem( $subitem )
#end #end
</ul> </ul>
#end #end
#end #end
#end #end
#end #end
#macro ( mainMenu ) #macro ( mainMenu )
#set ( $menus = $siteDescriptor.getChild( "body" ).getChildren( "menu" ) ) #set ( $menus = $siteDescriptor.getChild( "body" ).getChildren( "menu" ) )
#foreach( $menu in $menus ) #foreach( $menu in $menus )
<h5>$menu.getAttribute( "name" )</h5> <h5>$menu.getAttribute( "name" )</h5>
<ul> <ul>
#foreach( $item in $menu.getChildren() ) #foreach( $item in $menu.getChildren() )
#menuItem( $item ) #menuItem( $item )
#end #end
</ul> </ul>
#end #end
#end #end
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html> <html>
<head> <head>
<title>$title</title> <title>$title</title>
<style type="text/css" media="all"> <style type="text/css" media="all">
@import url("$relativePath/css/maven-base.css"); @import url("$relativePath/css/maven-base.css");
@import url("$relativePath/css/maven-theme.css"); @import url("$relativePath/css/maven-theme.css");
@import url("$relativePath/css/site.css"); @import url("$relativePath/css/site.css");
</style> </style>
<link rel="stylesheet" href="$relativePath/style/print.css" type="text/css" media="print" /> <link rel="stylesheet" href="$relativePath/style/print.css" type="text/css" media="print" />
#foreach( $author in $authors ) #foreach( $author in $authors )
<meta name="author" content="$author" /> <meta name="author" content="$author" />
#end #end
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
</head> </head>
<body class="composite"> <body class="composite">
<div id="banner"> <div id="banner">
#set ( $banner = "bannerLeft" ) #set ( $banner = "bannerLeft" )
#banner( $banner ) #banner( $banner )
#set ( $banner = "bannerRight" ) #set ( $banner = "bannerRight" )
#banner( $banner ) #banner( $banner )
<div class="clear"> <div class="clear">
<hr/> <hr/>
</div> </div>
</div> </div>
<div id="breadcrumbs"> <div id="breadcrumbs">
<div class="xleft">$i18n.getString( "site-plugin", $locale, "template.lastpublished" ): $currentDate</div> <div class="xleft">$i18n.getString( "site-plugin", $locale, "template.lastpublished" ): $currentDate</div>
<div class="xright">#links()</div> <div class="xright">#links()</div>
<div class="clear"> <div class="clear">
<hr/> <hr/>
</div> </div>
</div> </div>
<div id="leftColumn"><div id="navcolumn">#mainMenu()<a href="http://maven.apache.org/" title="$i18n.getString( "site-plugin", $locale, "template.builtby" ) Maven" id="poweredBy"> <div id="leftColumn"><div id="navcolumn">#mainMenu()<a href="http://maven.apache.org/" title="$i18n.getString( "site-plugin", $locale, "template.builtby" ) Maven" id="poweredBy">
<img alt="$i18n.getString( "site-plugin", $locale, "template.builtby" ) Maven" src="$relativePath/images/logos/maven-feather.png"></img> <img alt="$i18n.getString( "site-plugin", $locale, "template.builtby" ) Maven" src="$relativePath/images/logos/maven-feather.png"></img>
</a> </a>
</div></div> </div></div>
<div id="bodyColumn"> <div id="bodyColumn">
<div id="contentBox"> <div id="contentBox">
$bodyContent $bodyContent
</div> </div>
</div> </div>
<div class="clear"> <div class="clear">
<hr/> <hr/>
</div> </div>
<div id="footer"> <div id="footer">
<div class="xright">&#169; 2002-2005, Apache Software Foundation</div> <div class="xright">&#169; 2002-2005, Apache Software Foundation</div>
<div class="clear"> <div class="clear">
<hr/> <hr/>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -1,35 +1,35 @@
# ------------------------------------------------------------------- # -------------------------------------------------------------------
# Copyright 2001-2005 The Apache Software Foundation. # Copyright 2001-2005 The Apache Software Foundation.
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
# You may obtain a copy of the License at # You may obtain a copy of the License at
# #
# http://www.apache.org/licenses/LICENSE-2.0 # http://www.apache.org/licenses/LICENSE-2.0
# #
# Unless required by applicable law or agreed to in writing, software # Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, # distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# ------------------------------------------------------------------- # -------------------------------------------------------------------
template.lastpublished=Last Published template.lastpublished=Last Published
template.builtby=Built by template.builtby=Built by
report.project.title=Maven Generated Reports report.project.title=Maven Generated Reports
report.project.description1=This document provides an overview of the various reports that are automatically generated by report.project.description1=This document provides an overview of the various reports that are automatically generated by
report.project.description2=Each report is briefly described below. report.project.description2=Each report is briefly described below.
report.project.sectionTitle=Overview report.project.sectionTitle=Overview
report.project.column.description=Description report.project.column.description=Description
report.project.column.document=Document report.project.column.document=Document
report.information.title=General Project Information report.information.title=General Project Information
report.information.description1=This document provides an overview of the various documents and links that are part of this project's general information. All of this content is automatically generated by report.information.description1=This document provides an overview of the various documents and links that are part of this project's general information. All of this content is automatically generated by
report.information.description2=on behalf of the project. report.information.description2=on behalf of the project.
report.information.sectionTitle=Overview report.information.sectionTitle=Overview
report.information.column.description=Description report.information.column.description=Description
report.information.column.document=Document report.information.column.document=Document
report.menu.about=About report.menu.about=About
report.menu.projectinformation=Project Info report.menu.projectinformation=Project Info
report.menu.projectreports=Project Reports report.menu.projectreports=Project Reports
report.index.title=Welcome to report.index.title=Welcome to
report.index.nodescription=There are no description currently associated with this project. report.index.nodescription=There are no description currently associated with this project.

View File

@ -1,35 +1,35 @@
# ------------------------------------------------------------------- # -------------------------------------------------------------------
# Copyright 2001-2005 The Apache Software Foundation. # Copyright 2001-2005 The Apache Software Foundation.
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
# You may obtain a copy of the License at # You may obtain a copy of the License at
# #
# http://www.apache.org/licenses/LICENSE-2.0 # http://www.apache.org/licenses/LICENSE-2.0
# #
# Unless required by applicable law or agreed to in writing, software # Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, # distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# ------------------------------------------------------------------- # -------------------------------------------------------------------
template.lastpublished=Dernière publication template.lastpublished=Dernière publication
template.builtby=Produit par template.builtby=Produit par
report.project.title=Rapport générés par Maven report.project.title=Rapport générés par Maven
report.project.description1=Ce document fournit une vue d'ensemble des divers rapports générés automatiquement par report.project.description1=Ce document fournit une vue d'ensemble des divers rapports générés automatiquement par
report.project.description2=Chaque rapport est décrit brièvement ci-dessous. report.project.description2=Chaque rapport est décrit brièvement ci-dessous.
report.project.sectionTitle=Vue d'ensemble report.project.sectionTitle=Vue d'ensemble
report.project.column.description=Description report.project.column.description=Description
report.project.column.document=Document report.project.column.document=Document
report.information.title=Information générale du projet report.information.title=Information générale du projet
report.information.description1=Ce document fournit une vue d'ensemble des divers documents et liens qui font partis des informations générales du projet. Tous ces contenus sont générés automatiquement par report.information.description1=Ce document fournit une vue d'ensemble des divers documents et liens qui font partis des informations générales du projet. Tous ces contenus sont générés automatiquement par
report.information.description2=le projet lui-même. report.information.description2=le projet lui-même.
report.information.sectionTitle=Vue d'ensemble report.information.sectionTitle=Vue d'ensemble
report.information.column.description=Description report.information.column.description=Description
report.information.column.document=Document report.information.column.document=Document
report.menu.about=A propos de report.menu.about=A propos de
report.menu.projectinformation=Info Projet report.menu.projectinformation=Info Projet
report.menu.projectreports=Rapports Projet report.menu.projectreports=Rapports Projet
report.index.title=Bienvenue dans le projet report.index.title=Bienvenue dans le projet
report.index.nodescription=Il n'y a aucune description actuellement liée à ce projet. report.index.nodescription=Il n'y a aucune description actuellement liée à ce projet.

View File

@ -1,59 +1,59 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<!-- <!--
/* /*
* Copyright 2001-2005 The Apache Software Foundation. * Copyright 2001-2005 The Apache Software Foundation.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
--> -->
<project> <project>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.plugin.site.test1</groupId> <groupId>org.apache.maven.plugin.site.test1</groupId>
<artifactId>site-plugin-test1</artifactId> <artifactId>site-plugin-test1</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<inceptionYear>2005</inceptionYear> <inceptionYear>2005</inceptionYear>
<name>Maven Site Plugin Test1</name> <name>Maven Site Plugin Test1</name>
<description>Test report integration.</description> <description>Test report integration.</description>
<url>http://maven.apache.org</url> <url>http://maven.apache.org</url>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>3.8.1</version> <version>3.8.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<developers> <developers>
<developer> <developer>
<id>vsiveton</id> <id>vsiveton</id>
<name>Vincent Siveton</name> <name>Vincent Siveton</name>
<email>vsiveton@apache.org</email> <email>vsiveton@apache.org</email>
<organization>Apache Software Foundation</organization> <organization>Apache Software Foundation</organization>
<roles> <roles>
<role>Java Developer</role> <role>Java Developer</role>
</roles> </roles>
<timezone>-5</timezone> <timezone>-5</timezone>
</developer> </developer>
</developers> </developers>
<reporting> <reporting>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId> <artifactId>maven-project-info-reports-plugin</artifactId>
</plugin> </plugin>
</plugins> </plugins>
</reporting> </reporting>
</project> </project>

View File

@ -1,13 +1,13 @@
package org.apache.maven.plugin.site.test1; package org.apache.maven.plugin.site.test1;
/** /**
* Hello world! * Hello world!
* *
*/ */
public class App public class App
{ {
public static void main( String[] args ) public static void main( String[] args )
{ {
System.out.println( "Hello World!" ); System.out.println( "Hello World!" );
} }
} }

View File

@ -1,12 +1,12 @@
------ ------
Configuring Site Plugin Configuring Site Plugin
------ ------
Vincent Siveton Vincent Siveton
------ ------
13 July 2005 13 July 2005
------ ------
Site Plugin Test Site Plugin Test
Todo Todo

View File

@ -1,40 +1,40 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<!-- <!--
/* /*
* Copyright 2001-2005 The Apache Software Foundation. * Copyright 2001-2005 The Apache Software Foundation.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
--> -->
<project name="Maven Site"> <project name="Maven Site">
<bannerLeft> <bannerLeft>
<name>Maven Site</name> <name>Maven Site</name>
<src>http://maven.apache.org/images/apache-maven-project.png</src> <src>http://maven.apache.org/images/apache-maven-project.png</src>
<href>http://maven.apache.org/</href> <href>http://maven.apache.org/</href>
</bannerLeft> </bannerLeft>
<bannerRight> <bannerRight>
<src>http://maven.apache.org/images/maven-small.gif</src> <src>http://maven.apache.org/images/maven-small.gif</src>
</bannerRight> </bannerRight>
<body> <body>
<links> <links>
<item name="Maven 2" href="http://maven.apache.org/maven2/"/> <item name="Maven 2" href="http://maven.apache.org/maven2/"/>
</links> </links>
<menu name="Overview"> <menu name="Overview">
<item name="Test" href="/test.html"/> <item name="Test" href="/test.html"/>
</menu> </menu>
${reports} ${reports}
</body> </body>
</project> </project>

View File

@ -1,38 +1,38 @@
package org.apache.maven.plugin.site.test1; package org.apache.maven.plugin.site.test1;
import junit.framework.Test; import junit.framework.Test;
import junit.framework.TestCase; import junit.framework.TestCase;
import junit.framework.TestSuite; import junit.framework.TestSuite;
/** /**
* Unit test for simple App. * Unit test for simple App.
*/ */
public class AppTest public class AppTest
extends TestCase extends TestCase
{ {
/** /**
* Create the test case * Create the test case
* *
* @param testName name of the test case * @param testName name of the test case
*/ */
public AppTest( String testName ) public AppTest( String testName )
{ {
super( testName ); super( testName );
} }
/** /**
* @return the suite of tests being tested * @return the suite of tests being tested
*/ */
public static Test suite() public static Test suite()
{ {
return new TestSuite( AppTest.class ); return new TestSuite( AppTest.class );
} }
/** /**
* Rigourous Test :-) * Rigourous Test :-)
*/ */
public void testApp() public void testApp()
{ {
assertTrue( true ); assertTrue( true );
} }
} }

View File

@ -1,51 +1,51 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<!-- <!--
/* /*
* Copyright 2001-2005 The Apache Software Foundation. * Copyright 2001-2005 The Apache Software Foundation.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
--> -->
<project> <project>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.plugin.site.test2</groupId> <groupId>org.apache.maven.plugin.site.test2</groupId>
<artifactId>site-plugin-test2</artifactId> <artifactId>site-plugin-test2</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<inceptionYear>2005</inceptionYear> <inceptionYear>2005</inceptionYear>
<name>Maven Site Plugin Test2</name> <name>Maven Site Plugin Test2</name>
<description>Take care of the description in the generated index file.</description> <description>Take care of the description in the generated index file.</description>
<url>http://maven.apache.org</url> <url>http://maven.apache.org</url>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>3.8.1</version> <version>3.8.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<developers> <developers>
<developer> <developer>
<id>vsiveton</id> <id>vsiveton</id>
<name>Vincent Siveton</name> <name>Vincent Siveton</name>
<email>vsiveton@apache.org</email> <email>vsiveton@apache.org</email>
<organization>Apache Software Foundation</organization> <organization>Apache Software Foundation</organization>
<roles> <roles>
<role>Java Developer</role> <role>Java Developer</role>
</roles> </roles>
<timezone>-5</timezone> <timezone>-5</timezone>
</developer> </developer>
</developers> </developers>
</project> </project>

View File

@ -1,13 +1,13 @@
package org.apache.maven.plugin.site.test2; package org.apache.maven.plugin.site.test2;
/** /**
* Hello world! * Hello world!
* *
*/ */
public class App public class App
{ {
public static void main( String[] args ) public static void main( String[] args )
{ {
System.out.println( "Hello World!" ); System.out.println( "Hello World!" );
} }
} }

View File

@ -1,12 +1,12 @@
------ ------
Configuring Site Plugin Configuring Site Plugin
------ ------
Vincent Siveton Vincent Siveton
------ ------
13 July 2005 13 July 2005
------ ------
Site Plugin Test Site Plugin Test
Todo Todo

View File

@ -1,40 +1,40 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<!-- <!--
/* /*
* Copyright 2001-2005 The Apache Software Foundation. * Copyright 2001-2005 The Apache Software Foundation.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
--> -->
<project name="Maven Site"> <project name="Maven Site">
<bannerLeft> <bannerLeft>
<name>Maven Site</name> <name>Maven Site</name>
<src>http://maven.apache.org/images/apache-maven-project.png</src> <src>http://maven.apache.org/images/apache-maven-project.png</src>
<href>http://maven.apache.org/</href> <href>http://maven.apache.org/</href>
</bannerLeft> </bannerLeft>
<bannerRight> <bannerRight>
<src>http://maven.apache.org/images/maven-small.gif</src> <src>http://maven.apache.org/images/maven-small.gif</src>
</bannerRight> </bannerRight>
<body> <body>
<links> <links>
<item name="Maven 2" href="http://maven.apache.org/maven2/"/> <item name="Maven 2" href="http://maven.apache.org/maven2/"/>
</links> </links>
<menu name="Overview"> <menu name="Overview">
<item name="Test" href="/test.html"/> <item name="Test" href="/test.html"/>
</menu> </menu>
${reports} ${reports}
</body> </body>
</project> </project>

View File

@ -1,38 +1,38 @@
package org.apache.maven.plugin.site.test2; package org.apache.maven.plugin.site.test2;
import junit.framework.Test; import junit.framework.Test;
import junit.framework.TestCase; import junit.framework.TestCase;
import junit.framework.TestSuite; import junit.framework.TestSuite;
/** /**
* Unit test for simple App. * Unit test for simple App.
*/ */
public class AppTest public class AppTest
extends TestCase extends TestCase
{ {
/** /**
* Create the test case * Create the test case
* *
* @param testName name of the test case * @param testName name of the test case
*/ */
public AppTest( String testName ) public AppTest( String testName )
{ {
super( testName ); super( testName );
} }
/** /**
* @return the suite of tests being tested * @return the suite of tests being tested
*/ */
public static Test suite() public static Test suite()
{ {
return new TestSuite( AppTest.class ); return new TestSuite( AppTest.class );
} }
/** /**
* Rigourous Test :-) * Rigourous Test :-)
*/ */
public void testApp() public void testApp()
{ {
assertTrue( true ); assertTrue( true );
} }
} }

View File

@ -1,51 +1,51 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<!-- <!--
/* /*
* Copyright 2001-2005 The Apache Software Foundation. * Copyright 2001-2005 The Apache Software Foundation.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
--> -->
<project> <project>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.plugin.site.test3</groupId> <groupId>org.apache.maven.plugin.site.test3</groupId>
<artifactId>site-plugin-test3</artifactId> <artifactId>site-plugin-test3</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<inceptionYear>2005</inceptionYear> <inceptionYear>2005</inceptionYear>
<name>Maven Site Plugin Test3</name> <name>Maven Site Plugin Test3</name>
<!-- <description>Default description should be generated.</description> --> <!-- <description>Default description should be generated.</description> -->
<url>http://maven.apache.org</url> <url>http://maven.apache.org</url>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>3.8.1</version> <version>3.8.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<developers> <developers>
<developer> <developer>
<id>vsiveton</id> <id>vsiveton</id>
<name>Vincent Siveton</name> <name>Vincent Siveton</name>
<email>vsiveton@apache.org</email> <email>vsiveton@apache.org</email>
<organization>Apache Software Foundation</organization> <organization>Apache Software Foundation</organization>
<roles> <roles>
<role>Java Developer</role> <role>Java Developer</role>
</roles> </roles>
<timezone>-5</timezone> <timezone>-5</timezone>
</developer> </developer>
</developers> </developers>
</project> </project>

View File

@ -1,13 +1,13 @@
package org.apache.maven.plugin.site.test3; package org.apache.maven.plugin.site.test3;
/** /**
* Hello world! * Hello world!
* *
*/ */
public class App public class App
{ {
public static void main( String[] args ) public static void main( String[] args )
{ {
System.out.println( "Hello World!" ); System.out.println( "Hello World!" );
} }
} }

View File

@ -1,12 +1,12 @@
------ ------
Configuring Site Plugin Configuring Site Plugin
------ ------
Vincent Siveton Vincent Siveton
------ ------
13 July 2005 13 July 2005
------ ------
Site Plugin Test Site Plugin Test
Todo Todo

View File

@ -1,40 +1,40 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<!-- <!--
/* /*
* Copyright 2001-2005 The Apache Software Foundation. * Copyright 2001-2005 The Apache Software Foundation.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
--> -->
<project name="Maven Site"> <project name="Maven Site">
<bannerLeft> <bannerLeft>
<name>Maven Site</name> <name>Maven Site</name>
<src>http://maven.apache.org/images/apache-maven-project.png</src> <src>http://maven.apache.org/images/apache-maven-project.png</src>
<href>http://maven.apache.org/</href> <href>http://maven.apache.org/</href>
</bannerLeft> </bannerLeft>
<bannerRight> <bannerRight>
<src>http://maven.apache.org/images/maven-small.gif</src> <src>http://maven.apache.org/images/maven-small.gif</src>
</bannerRight> </bannerRight>
<body> <body>
<links> <links>
<item name="Maven 2" href="http://maven.apache.org/maven2/"/> <item name="Maven 2" href="http://maven.apache.org/maven2/"/>
</links> </links>
<menu name="Overview"> <menu name="Overview">
<item name="Test" href="/test.html"/> <item name="Test" href="/test.html"/>
</menu> </menu>
${reports} ${reports}
</body> </body>
</project> </project>

View File

@ -1,38 +1,38 @@
package org.apache.maven.plugin.site.test3; package org.apache.maven.plugin.site.test3;
import junit.framework.Test; import junit.framework.Test;
import junit.framework.TestCase; import junit.framework.TestCase;
import junit.framework.TestSuite; import junit.framework.TestSuite;
/** /**
* Unit test for simple App. * Unit test for simple App.
*/ */
public class AppTest public class AppTest
extends TestCase extends TestCase
{ {
/** /**
* Create the test case * Create the test case
* *
* @param testName name of the test case * @param testName name of the test case
*/ */
public AppTest( String testName ) public AppTest( String testName )
{ {
super( testName ); super( testName );
} }
/** /**
* @return the suite of tests being tested * @return the suite of tests being tested
*/ */
public static Test suite() public static Test suite()
{ {
return new TestSuite( AppTest.class ); return new TestSuite( AppTest.class );
} }
/** /**
* Rigourous Test :-) * Rigourous Test :-)
*/ */
public void testApp() public void testApp()
{ {
assertTrue( true ); assertTrue( true );
} }
} }

View File

@ -1,51 +1,51 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<!-- <!--
/* /*
* Copyright 2001-2005 The Apache Software Foundation. * Copyright 2001-2005 The Apache Software Foundation.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
--> -->
<project> <project>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.plugin.site.test4</groupId> <groupId>org.apache.maven.plugin.site.test4</groupId>
<artifactId>site-plugin-test4</artifactId> <artifactId>site-plugin-test4</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<inceptionYear>2005</inceptionYear> <inceptionYear>2005</inceptionYear>
<name>Maven Site Plugin Test3</name> <name>Maven Site Plugin Test3</name>
<description>An index already exists.</description> --> <description>An index already exists.</description> -->
<url>http://maven.apache.org</url> <url>http://maven.apache.org</url>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>3.8.1</version> <version>3.8.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<developers> <developers>
<developer> <developer>
<id>vsiveton</id> <id>vsiveton</id>
<name>Vincent Siveton</name> <name>Vincent Siveton</name>
<email>vsiveton@apache.org</email> <email>vsiveton@apache.org</email>
<organization>Apache Software Foundation</organization> <organization>Apache Software Foundation</organization>
<roles> <roles>
<role>Java Developer</role> <role>Java Developer</role>
</roles> </roles>
<timezone>-5</timezone> <timezone>-5</timezone>
</developer> </developer>
</developers> </developers>
</project> </project>

View File

@ -1,13 +1,13 @@
package org.apache.maven.plugin.site.test4; package org.apache.maven.plugin.site.test4;
/** /**
* Hello world! * Hello world!
* *
*/ */
public class App public class App
{ {
public static void main( String[] args ) public static void main( String[] args )
{ {
System.out.println( "Hello World!" ); System.out.println( "Hello World!" );
} }
} }

View File

@ -1,12 +1,12 @@
------ ------
Configuring Site Plugin Configuring Site Plugin
------ ------
Vincent Siveton Vincent Siveton
------ ------
13 July 2005 13 July 2005
------ ------
Site Plugin Test Site Plugin Test
Todo Todo

View File

@ -1,12 +1,12 @@
------ ------
Configuring Site Plugin Configuring Site Plugin
------ ------
Vincent Siveton Vincent Siveton
------ ------
13 July 2005 13 July 2005
------ ------
Site Plugin Test Site Plugin Test
Todo Todo

View File

@ -1,40 +1,40 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<!-- <!--
/* /*
* Copyright 2001-2005 The Apache Software Foundation. * Copyright 2001-2005 The Apache Software Foundation.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
--> -->
<project name="Maven Site"> <project name="Maven Site">
<bannerLeft> <bannerLeft>
<name>Maven Site</name> <name>Maven Site</name>
<src>http://maven.apache.org/images/apache-maven-project.png</src> <src>http://maven.apache.org/images/apache-maven-project.png</src>
<href>http://maven.apache.org/</href> <href>http://maven.apache.org/</href>
</bannerLeft> </bannerLeft>
<bannerRight> <bannerRight>
<src>http://maven.apache.org/images/maven-small.gif</src> <src>http://maven.apache.org/images/maven-small.gif</src>
</bannerRight> </bannerRight>
<body> <body>
<links> <links>
<item name="Maven 2" href="http://maven.apache.org/maven2/"/> <item name="Maven 2" href="http://maven.apache.org/maven2/"/>
</links> </links>
<menu name="Overview"> <menu name="Overview">
<item name="Test" href="/test.html"/> <item name="Test" href="/test.html"/>
</menu> </menu>
${reports} ${reports}
</body> </body>
</project> </project>

View File

@ -1,38 +1,38 @@
package org.apache.maven.plugin.site.test4; package org.apache.maven.plugin.site.test4;
import junit.framework.Test; import junit.framework.Test;
import junit.framework.TestCase; import junit.framework.TestCase;
import junit.framework.TestSuite; import junit.framework.TestSuite;
/** /**
* Unit test for simple App. * Unit test for simple App.
*/ */
public class AppTest public class AppTest
extends TestCase extends TestCase
{ {
/** /**
* Create the test case * Create the test case
* *
* @param testName name of the test case * @param testName name of the test case
*/ */
public AppTest( String testName ) public AppTest( String testName )
{ {
super( testName ); super( testName );
} }
/** /**
* @return the suite of tests being tested * @return the suite of tests being tested
*/ */
public static Test suite() public static Test suite()
{ {
return new TestSuite( AppTest.class ); return new TestSuite( AppTest.class );
} }
/** /**
* Rigourous Test :-) * Rigourous Test :-)
*/ */
public void testApp() public void testApp()
{ {
assertTrue( true ); assertTrue( true );
} }
} }

View File

@ -1,51 +1,51 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<!-- <!--
/* /*
* Copyright 2001-2005 The Apache Software Foundation. * Copyright 2001-2005 The Apache Software Foundation.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
--> -->
<project> <project>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.plugin.site.test5</groupId> <groupId>org.apache.maven.plugin.site.test5</groupId>
<artifactId>site-plugin-test5</artifactId> <artifactId>site-plugin-test5</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<inceptionYear>2005</inceptionYear> <inceptionYear>2005</inceptionYear>
<name>Maven Site Plugin Test5</name> <name>Maven Site Plugin Test5</name>
<description>Two indexes exists.</description> --> <description>Two indexes exists.</description> -->
<url>http://maven.apache.org</url> <url>http://maven.apache.org</url>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>3.8.1</version> <version>3.8.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<developers> <developers>
<developer> <developer>
<id>vsiveton</id> <id>vsiveton</id>
<name>Vincent Siveton</name> <name>Vincent Siveton</name>
<email>vsiveton@apache.org</email> <email>vsiveton@apache.org</email>
<organization>Apache Software Foundation</organization> <organization>Apache Software Foundation</organization>
<roles> <roles>
<role>Java Developer</role> <role>Java Developer</role>
</roles> </roles>
<timezone>-5</timezone> <timezone>-5</timezone>
</developer> </developer>
</developers> </developers>
</project> </project>

View File

@ -1,13 +1,13 @@
package org.apache.maven.plugin.site.test5; package org.apache.maven.plugin.site.test5;
/** /**
* Hello world! * Hello world!
* *
*/ */
public class App public class App
{ {
public static void main( String[] args ) public static void main( String[] args )
{ {
System.out.println( "Hello World!" ); System.out.println( "Hello World!" );
} }
} }

View File

@ -1,12 +1,12 @@
------ ------
Configuring Site Plugin Configuring Site Plugin
------ ------
Vincent Siveton Vincent Siveton
------ ------
13 July 2005 13 July 2005
------ ------
Site Plugin Test Site Plugin Test
Todo Todo

View File

@ -1,12 +1,12 @@
------ ------
Configuring Site Plugin Configuring Site Plugin
------ ------
Vincent Siveton Vincent Siveton
------ ------
13 July 2005 13 July 2005
------ ------
Site Plugin Test Site Plugin Test
Todo Todo

View File

@ -1,40 +1,40 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<!-- <!--
/* /*
* Copyright 2001-2005 The Apache Software Foundation. * Copyright 2001-2005 The Apache Software Foundation.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
--> -->
<project name="Maven Site"> <project name="Maven Site">
<bannerLeft> <bannerLeft>
<name>Maven Site</name> <name>Maven Site</name>
<src>http://maven.apache.org/images/apache-maven-project.png</src> <src>http://maven.apache.org/images/apache-maven-project.png</src>
<href>http://maven.apache.org/</href> <href>http://maven.apache.org/</href>
</bannerLeft> </bannerLeft>
<bannerRight> <bannerRight>
<src>http://maven.apache.org/images/maven-small.gif</src> <src>http://maven.apache.org/images/maven-small.gif</src>
</bannerRight> </bannerRight>
<body> <body>
<links> <links>
<item name="Maven 2" href="http://maven.apache.org/maven2/"/> <item name="Maven 2" href="http://maven.apache.org/maven2/"/>
</links> </links>
<menu name="Overview"> <menu name="Overview">
<item name="Test" href="/test.html"/> <item name="Test" href="/test.html"/>
</menu> </menu>
${reports} ${reports}
</body> </body>
</project> </project>

View File

@ -1,34 +1,34 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!-- <!--
/* /*
* Copyright 2001-2005 The Apache Software Foundation. * Copyright 2001-2005 The Apache Software Foundation.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
--> -->
<document> <document>
<properties> <properties>
<title>Welcome</title> <title>Welcome</title>
<author email="vincent.siveton">Vincent Siveton</author> <author email="vincent.siveton">Vincent Siveton</author>
</properties> </properties>
<body> <body>
<section name="Welcome to Maven"> <section name="Welcome to Maven">
<p> <p>
Test the Maven Site Plugin. Test the Maven Site Plugin.
</p> </p>
</section> </section>
</body> </body>
</document> </document>

View File

@ -1,38 +1,38 @@
package org.apache.maven.plugin.site.test5; package org.apache.maven.plugin.site.test5;
import junit.framework.Test; import junit.framework.Test;
import junit.framework.TestCase; import junit.framework.TestCase;
import junit.framework.TestSuite; import junit.framework.TestSuite;
/** /**
* Unit test for simple App. * Unit test for simple App.
*/ */
public class AppTest public class AppTest
extends TestCase extends TestCase
{ {
/** /**
* Create the test case * Create the test case
* *
* @param testName name of the test case * @param testName name of the test case
*/ */
public AppTest( String testName ) public AppTest( String testName )
{ {
super( testName ); super( testName );
} }
/** /**
* @return the suite of tests being tested * @return the suite of tests being tested
*/ */
public static Test suite() public static Test suite()
{ {
return new TestSuite( AppTest.class ); return new TestSuite( AppTest.class );
} }
/** /**
* Rigourous Test :-) * Rigourous Test :-)
*/ */
public void testApp() public void testApp()
{ {
assertTrue( true ); assertTrue( true );
} }
} }

View File

@ -1,51 +1,51 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<!-- <!--
/* /*
* Copyright 2001-2005 The Apache Software Foundation. * Copyright 2001-2005 The Apache Software Foundation.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
--> -->
<project> <project>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.plugin.site.test6</groupId> <groupId>org.apache.maven.plugin.site.test6</groupId>
<artifactId>site-plugin-test6</artifactId> <artifactId>site-plugin-test6</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<inceptionYear>2005</inceptionYear> <inceptionYear>2005</inceptionYear>
<name>Maven Site Plugin Test6 MNG-584 and MNG-585 issues</name> <name>Maven Site Plugin Test6 MNG-584 and MNG-585 issues</name>
<description>Test the MNG-584 and MNG-585 issues</description> <description>Test the MNG-584 and MNG-585 issues</description>
<url>http://maven.apache.org</url> <url>http://maven.apache.org</url>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>3.8.1</version> <version>3.8.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<developers> <developers>
<developer> <developer>
<id>vsiveton</id> <id>vsiveton</id>
<name>Vincent Siveton</name> <name>Vincent Siveton</name>
<email>vsiveton@apache.org</email> <email>vsiveton@apache.org</email>
<organization>Apache Software Foundation</organization> <organization>Apache Software Foundation</organization>
<roles> <roles>
<role>Java Developer</role> <role>Java Developer</role>
</roles> </roles>
<timezone>-5</timezone> <timezone>-5</timezone>
</developer> </developer>
</developers> </developers>
</project> </project>

View File

@ -1,13 +1,13 @@
package org.apache.maven.plugin.site.test6; package org.apache.maven.plugin.site.test6;
/** /**
* Hello world! * Hello world!
* *
*/ */
public class App public class App
{ {
public static void main( String[] args ) public static void main( String[] args )
{ {
System.out.println( "Hello World!" ); System.out.println( "Hello World!" );
} }
} }

View File

@ -1,12 +1,12 @@
------ ------
Configuring Site Plugin Configuring Site Plugin
------ ------
Vincent Siveton Vincent Siveton
------ ------
13 July 2005 13 July 2005
------ ------
Site Plugin Index Site Plugin Index
From /alpha/index.apt From /alpha/index.apt

View File

@ -1,12 +1,12 @@
------ ------
Configuring Site Plugin Configuring Site Plugin
------ ------
Vincent Siveton Vincent Siveton
------ ------
13 July 2005 13 July 2005
------ ------
Site Plugin Index Site Plugin Index
From /alpha/one/index.apt From /alpha/one/index.apt

View File

@ -1,12 +1,12 @@
------ ------
Configuring Site Plugin Configuring Site Plugin
------ ------
Vincent Siveton Vincent Siveton
------ ------
13 July 2005 13 July 2005
------ ------
Site Plugin Index Site Plugin Index
From /alpha/two/index.apt From /alpha/two/index.apt

View File

@ -1,12 +1,12 @@
------ ------
Configuring Site Plugin Configuring Site Plugin
------ ------
Vincent Siveton Vincent Siveton
------ ------
13 July 2005 13 July 2005
------ ------
Site Plugin Index Site Plugin Index
From /beta/index.apt From /beta/index.apt

View File

@ -1,12 +1,12 @@
------ ------
Configuring Site Plugin Configuring Site Plugin
------ ------
Vincent Siveton Vincent Siveton
------ ------
13 July 2005 13 July 2005
------ ------
Site Plugin Index Site Plugin Index
From /beta/one/index.apt From /beta/one/index.apt

View File

@ -1,12 +1,12 @@
------ ------
Configuring Site Plugin Configuring Site Plugin
------ ------
Vincent Siveton Vincent Siveton
------ ------
13 July 2005 13 July 2005
------ ------
Site Plugin Index Site Plugin Index
From /beta/beta/index.apt From /beta/beta/index.apt

View File

@ -1,12 +1,12 @@
------ ------
Configuring Site Plugin Configuring Site Plugin
------ ------
Vincent Siveton Vincent Siveton
------ ------
13 July 2005 13 July 2005
------ ------
Site Plugin Item Site Plugin Item
Todo Todo

View File

@ -1,54 +1,54 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<!-- <!--
/* /*
* Copyright 2001-2005 The Apache Software Foundation. * Copyright 2001-2005 The Apache Software Foundation.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
--> -->
<project name="Maven Site"> <project name="Maven Site">
<bannerLeft> <bannerLeft>
<name>Maven Site</name> <name>Maven Site</name>
<src>http://maven.apache.org/images/apache-maven-project.png</src> <src>http://maven.apache.org/images/apache-maven-project.png</src>
<href>http://maven.apache.org/</href> <href>http://maven.apache.org/</href>
</bannerLeft> </bannerLeft>
<bannerRight> <bannerRight>
<src>http://maven.apache.org/images/maven-small.gif</src> <src>http://maven.apache.org/images/maven-small.gif</src>
</bannerRight> </bannerRight>
<body> <body>
<links> <links>
<item name="Maven 2" href="http://maven.apache.org/maven2/"/> <item name="Maven 2" href="http://maven.apache.org/maven2/"/>
</links> </links>
<!-- Menu in the Left Navigation --> <!-- Menu in the Left Navigation -->
<menu name="Menu Name"> <menu name="Menu Name">
<!-- Standalone item --> <!-- Standalone item -->
<item name="Item" href="/item.html" /> <item name="Item" href="/item.html" />
<!-- Uncollapsed Submenu --> <!-- Uncollapsed Submenu -->
<item name="Alpha" href="/alpha/index.html"> <item name="Alpha" href="/alpha/index.html">
<item name="Alpha One" href="/alpha/one/index.html"/> <item name="Alpha One" href="/alpha/one/index.html"/>
<item name="Alpha Two" href="/alpha/two/index.html"/> <item name="Alpha Two" href="/alpha/two/index.html"/>
</item> </item>
<!-- Collapsed Submenu --> <!-- Collapsed Submenu -->
<item name="Beta" href="/beta/index.html" collapse="true"> <item name="Beta" href="/beta/index.html" collapse="true">
<item name="Beta One" href="/beta/one/index.html" collapse="true"/> <item name="Beta One" href="/beta/one/index.html" collapse="true"/>
<item name="Beta Two" href="/beta/two/index.html" collapse="true"/> <item name="Beta Two" href="/beta/two/index.html" collapse="true"/>
</item> </item>
</menu> </menu>
${reports} ${reports}
</body> </body>
</project> </project>

View File

@ -1,38 +1,38 @@
package org.apache.maven.plugin.site.test6; package org.apache.maven.plugin.site.test6;
import junit.framework.Test; import junit.framework.Test;
import junit.framework.TestCase; import junit.framework.TestCase;
import junit.framework.TestSuite; import junit.framework.TestSuite;
/** /**
* Unit test for simple App. * Unit test for simple App.
*/ */
public class AppTest public class AppTest
extends TestCase extends TestCase
{ {
/** /**
* Create the test case * Create the test case
* *
* @param testName name of the test case * @param testName name of the test case
*/ */
public AppTest( String testName ) public AppTest( String testName )
{ {
super( testName ); super( testName );
} }
/** /**
* @return the suite of tests being tested * @return the suite of tests being tested
*/ */
public static Test suite() public static Test suite()
{ {
return new TestSuite( AppTest.class ); return new TestSuite( AppTest.class );
} }
/** /**
* Rigourous Test :-) * Rigourous Test :-)
*/ */
public void testApp() public void testApp()
{ {
assertTrue( true ); assertTrue( true );
} }
} }