Author: hboutemy Date: Sun Aug 21 15:47:37 2011 New Revision: 1160004 URL: http://svn.apache.org/viewvc?rev=1160004&view=rev Log: improved documentation
Added: maven/archetype/trunk/archetype-models/archetype-catalog/src/site/ maven/archetype/trunk/archetype-models/archetype-catalog/src/site/apt/ maven/archetype/trunk/archetype-models/archetype-catalog/src/site/apt/index.apt (with props) maven/archetype/trunk/archetype-models/archetype-catalog/src/site/site.xml (with props) maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/ maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/apt/ maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/apt/index.apt (with props) maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/site.xml (with props) maven/archetype/trunk/archetype-models/archetype-registry/src/site/ maven/archetype/trunk/archetype-models/archetype-registry/src/site/apt/ maven/archetype/trunk/archetype-models/archetype-registry/src/site/apt/index.apt (with props) maven/archetype/trunk/archetype-models/archetype-registry/src/site/site.xml (with props) Modified: maven/archetype/trunk/archetype-common/src/site/site.xml Modified: maven/archetype/trunk/archetype-common/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/archetype/trunk/archetype-common/src/site/site.xml?rev=1160004&r1=1160003&r2=1160004&view=diff ============================================================================== --- maven/archetype/trunk/archetype-common/src/site/site.xml (original) +++ maven/archetype/trunk/archetype-common/src/site/site.xml Sun Aug 21 15:47:37 2011 @@ -23,6 +23,12 @@ under the License. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> <menu name="Documentation"> <item name="Internal Catalog" href="./internal.html"/> </menu> Added: maven/archetype/trunk/archetype-models/archetype-catalog/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/maven/archetype/trunk/archetype-models/archetype-catalog/src/site/apt/index.apt?rev=1160004&view=auto ============================================================================== --- maven/archetype/trunk/archetype-models/archetype-catalog/src/site/apt/index.apt (added) +++ maven/archetype/trunk/archetype-models/archetype-catalog/src/site/apt/index.apt Sun Aug 21 15:47:37 2011 @@ -0,0 +1,21 @@ + ----- + Maven Archetype Catalog Model + ----- + Hervé Boutemy + ----- + 2011-08-21 + ----- + +Maven Archetype Catalog Model + + This is strictly the model for Maven Archetype Catalog used to contain information about Archetypes so that users + can be presented with a list of archetypes from any number of catalogs to generate new + projects. + + The following are generated from this model: + + * {{{./apidocs/index.html}Java sources}} with Reader and Writers for the Xpp3 XML parser + + * A {{{./archetype-catalog.html}Descriptor Reference}} + + * An XSD referenced in the {{{./archetype-catalog.html}Descriptor Reference}}. Propchange: maven/archetype/trunk/archetype-models/archetype-catalog/src/site/apt/index.apt ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/archetype/trunk/archetype-models/archetype-catalog/src/site/apt/index.apt ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Added: maven/archetype/trunk/archetype-models/archetype-catalog/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/archetype/trunk/archetype-models/archetype-catalog/src/site/site.xml?rev=1160004&view=auto ============================================================================== --- maven/archetype/trunk/archetype-models/archetype-catalog/src/site/site.xml (added) +++ maven/archetype/trunk/archetype-models/archetype-catalog/src/site/site.xml Sun Aug 21 15:47:37 2011 @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you 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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="Archetype Catalog Reference" href="archetype-catalog.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="parent"/> + <menu ref="reports"/> + </body> +</project> \ No newline at end of file Propchange: maven/archetype/trunk/archetype-models/archetype-catalog/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/archetype/trunk/archetype-models/archetype-catalog/src/site/site.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/archetype/trunk/archetype-models/archetype-catalog/src/site/site.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/apt/index.apt?rev=1160004&view=auto ============================================================================== --- maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/apt/index.apt (added) +++ maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/apt/index.apt Sun Aug 21 15:47:37 2011 @@ -0,0 +1,19 @@ + ----- + Maven Archetype Descriptor Model + ----- + Hervé Boutemy + ----- + 2011-08-21 + ----- + +Maven Archetype Descriptor Model + + This is strictly the model for Maven Archetype Descriptor used to describe archetypes's metadata. + + The following are generated from this model: + + * {{{./apidocs/index.html}Java sources}} with Reader and Writers for the Xpp3 XML parser + + * A {{{./archetype-descriptor.html}Descriptor Reference}} + + * An XSD referenced in the {{{./archetype-descriptor.html}Descriptor Reference}}. Propchange: maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/apt/index.apt ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/apt/index.apt ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Added: maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/site.xml?rev=1160004&view=auto ============================================================================== --- maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/site.xml (added) +++ maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/site.xml Sun Aug 21 15:47:37 2011 @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you 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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="Archetype Descriptor Reference" href="archetype-descriptor.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="parent"/> + <menu ref="reports"/> + </body> +</project> \ No newline at end of file Propchange: maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/site.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/archetype/trunk/archetype-models/archetype-descriptor/src/site/site.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: maven/archetype/trunk/archetype-models/archetype-registry/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/maven/archetype/trunk/archetype-models/archetype-registry/src/site/apt/index.apt?rev=1160004&view=auto ============================================================================== --- maven/archetype/trunk/archetype-models/archetype-registry/src/site/apt/index.apt (added) +++ maven/archetype/trunk/archetype-models/archetype-registry/src/site/apt/index.apt Sun Aug 21 15:47:37 2011 @@ -0,0 +1,19 @@ + ----- + Maven Archetype Registry Descriptor Model + ----- + Hervé Boutemy + ----- + 2011-08-21 + ----- + +Maven Archetype Registry Descriptor Model + + This is strictly the model for Maven Archetype Registry Descriptor. + + The following are generated from this model: + + * {{{./apidocs/index.html}Java sources}} with Reader and Writers for the Xpp3 XML parser + + * A {{{./archetype-registry.html}Descriptor Reference}} + + * An XSD referenced in the {{{./archetype-registry.html}Descriptor Reference}}. Propchange: maven/archetype/trunk/archetype-models/archetype-registry/src/site/apt/index.apt ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/archetype/trunk/archetype-models/archetype-registry/src/site/apt/index.apt ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Added: maven/archetype/trunk/archetype-models/archetype-registry/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/archetype/trunk/archetype-models/archetype-registry/src/site/site.xml?rev=1160004&view=auto ============================================================================== --- maven/archetype/trunk/archetype-models/archetype-registry/src/site/site.xml (added) +++ maven/archetype/trunk/archetype-models/archetype-registry/src/site/site.xml Sun Aug 21 15:47:37 2011 @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you 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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="Archetype Registry Reference" href="archetype-registry.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="parent"/> + <menu ref="reports"/> + </body> +</project> \ No newline at end of file Propchange: maven/archetype/trunk/archetype-models/archetype-registry/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/archetype/trunk/archetype-models/archetype-registry/src/site/site.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/archetype/trunk/archetype-models/archetype-registry/src/site/site.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain