Author: wsmoak
Date: Tue Dec 13 22:19:37 2005
New Revision: 356738

URL: http://svn.apache.org/viewcvs?rev=356738&view=rev
Log:
Added Maven build for Shale Tiger Extensions.  (Source code will be excluded if 
JDK 1.5 is not used for the build.)
Added documentation links and placeholder 'features' page.
Fixed version number in Ant build.xml file.

Added:
    struts/shale/trunk/build/tiger/
    struts/shale/trunk/build/tiger/project.properties   (with props)
    struts/shale/trunk/build/tiger/project.xml   (with props)
    struts/shale/trunk/tiger/xdocs/
    struts/shale/trunk/tiger/xdocs/navigation.xml   (with props)
    struts/shale/trunk/xdocs/features-tiger-extensions.xml   (with props)
Modified:
    struts/shale/trunk/tiger/build.xml
    struts/shale/trunk/xdocs/index.xml
    struts/shale/trunk/xdocs/navigation.xml

Added: struts/shale/trunk/build/tiger/project.properties
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/build/tiger/project.properties?rev=356738&view=auto
==============================================================================
--- struts/shale/trunk/build/tiger/project.properties (added)
+++ struts/shale/trunk/build/tiger/project.properties Tue Dec 13 22:19:37 2005
@@ -0,0 +1,22 @@
+
+shale.subdir=tiger
+
+maven.src.dir=../../${shale.subdir}/src
+
+maven.checkstyle.header.file=../${shale.subdir}/LICENSE.txt
+
+maven.docs.src=../${shale.subdir}/xdocs
+
+taglib.src.dir=../${shale.subdir}/src/conf
+
+maven.compile.source=1.5
+maven.compile.target=1.5
+
+maven.javadoc.source=1.5
+
+# Required for unit tests using MockServletContext
+documentRoot=${basedir}/target/test-classes
+
+maven.junit.sysproperties=documentRoot
+
+maven.test.skip=true

Propchange: struts/shale/trunk/build/tiger/project.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/shale/trunk/build/tiger/project.properties
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: struts/shale/trunk/build/tiger/project.xml
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/build/tiger/project.xml?rev=356738&view=auto
==============================================================================
--- struts/shale/trunk/build/tiger/project.xml (added)
+++ struts/shale/trunk/build/tiger/project.xml Tue Dec 13 22:19:37 2005
@@ -0,0 +1,122 @@
+<?xml version="1.0"?>
+
+<!--
+
+ Copyright 2004-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.
+
+-->
+
+<project>
+    <extend>../project.xml</extend>
+    <artifactId>shale-tiger</artifactId>
+    <name>Shale Tiger Extensions</name>
+    <currentVersion>1.0.1-SNAPSHOT</currentVersion>
+
+    <siteAddress>people.apache.org</siteAddress>
+    
<siteDirectory>/www/struts.apache.org/struts-shale/shale-tiger/</siteDirectory>
+
+    <build>
+
+        <sourceDirectory>${maven.src.dir}/java</sourceDirectory>
+        
<unitTestSourceDirectory>${maven.src.dir}/test</unitTestSourceDirectory>
+
+        <!-- Look for a class that's new in JDK 1.5, 
+             otherwise exclude the sources -->
+        <sourceModifications>
+            <sourceModification>
+                <className>java.util.Formatter</className>
+                <excludes>
+                    <exclude>**/*</exclude>
+                </excludes>
+            </sourceModification>
+        </sourceModifications>
+
+        <unitTest>
+            <includes>
+                <include>**/*TestCase.java</include>
+            </includes>
+            <resource>
+                <directory>${maven.src.dir}/test</directory>
+                <includes>
+                    <include>**/*.html</include>
+                    <include>**/*.xml</include>
+                    <include>**/*.dtd</include>
+                    <include>**/*.properties</include>
+                </includes>
+            </resource>
+        </unitTest>
+
+        <resources>
+            <!-- Copy non-Java Sources -->
+            <resource>
+                <directory>${maven.src.dir}/java</directory>
+                <includes>
+                    <include>**/*.html</include>
+                    <include>**/*.xml</include>
+                    <include>**/*.dtd</include>
+                    <include>**/*.properties</include>
+                </includes>
+            </resource>
+            <resource>
+                <directory>${maven.src.dir}/..</directory>
+                <targetPath>META-INF</targetPath>
+                <includes>
+                    <include>NOTICE.txt</include>
+                    <include>LICENSE.txt</include>
+                </includes>
+            </resource>
+        </resources>
+
+    </build>
+
+    <reports>
+        <!--report>maven-checkstyle-plugin</report-->
+        <report>maven-changelog-plugin</report>
+        <report>maven-changes-plugin</report>
+        <report>maven-developer-activity-plugin</report>
+        <report>maven-faq-plugin</report>
+        <report>maven-file-activity-plugin</report>
+        <report>maven-javadoc-plugin</report>
+        <report>maven-jdepend-plugin</report>
+        <report>maven-junit-report-plugin</report>
+        <report>maven-jxr-plugin</report>
+        <!--report>maven-linkcheck-plugin</report-->
+        <report>maven-pmd-plugin</report>
+        <report>maven-simian-plugin</report>
+        <report>maven-tasklist-plugin</report>
+        <!--report>maven-jcoverage-plugin</report-->
+        <report>maven-findbugs-plugin</report>
+    </reports>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>shale</groupId>
+            <artifactId>shale-core</artifactId>
+            <version>1.0.1-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>shale</groupId>
+            <artifactId>shale-test</artifactId>
+            <version>1.0.1-SNAPSHOT</version>
+            <properties>
+                <scope>test</scope>
+            </properties>
+        </dependency>
+
+    </dependencies>
+
+</project>

Propchange: struts/shale/trunk/build/tiger/project.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/shale/trunk/build/tiger/project.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/shale/trunk/tiger/build.xml
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/tiger/build.xml?rev=356738&r1=356737&r2=356738&view=diff
==============================================================================
--- struts/shale/trunk/tiger/build.xml (original)
+++ struts/shale/trunk/tiger/build.xml Tue Dec 13 22:19:37 2005
@@ -57,7 +57,7 @@
   <property name="dist.home"       value="${basedir}/dist"/>
   <property name="project.name"    value="Shale Tiger Extensions"/>
   <property name="project.package" value="org.apache.shale.tiger"/>
-  <property name="project.version" value="1.0-dev"/>
+  <property name="project.version" value="1.0.1-dev"/>
 
 
   <!-- Unit Test Defaults -->

Added: struts/shale/trunk/tiger/xdocs/navigation.xml
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/tiger/xdocs/navigation.xml?rev=356738&view=auto
==============================================================================
--- struts/shale/trunk/tiger/xdocs/navigation.xml (added)
+++ struts/shale/trunk/tiger/xdocs/navigation.xml Tue Dec 13 22:19:37 2005
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project name="Struts Framework"
+         href="http://struts.apache.org";
+        image="/images/struts.gif">
+
+    <title>Shale Tiger Extensions</title>
+  <body>
+
+    <menu name="Quick Links">
+        <item name="Struts"             
+              href="../../index.html"/>
+        <item name="Shale"             
+              href="../index.html"/>
+        <item name="JavaServer Faces"   
+              href="http://java.sun.com/j2ee/javaserverfaces"/>
+        <item name="Struts-Faces Integration Library" 
+              href="../../struts-faces/index.html"/>
+    </menu>
+
+  </body>
+</project>
+
+
+
+
+
+

Propchange: struts/shale/trunk/tiger/xdocs/navigation.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/shale/trunk/tiger/xdocs/navigation.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: struts/shale/trunk/xdocs/features-tiger-extensions.xml
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/xdocs/features-tiger-extensions.xml?rev=356738&view=auto
==============================================================================
--- struts/shale/trunk/xdocs/features-tiger-extensions.xml (added)
+++ struts/shale/trunk/xdocs/features-tiger-extensions.xml Tue Dec 13 22:19:37 
2005
@@ -0,0 +1,19 @@
+<?xml version="1.0"?>
+<document>
+
+  <properties>
+    <title>Shale Tiger Extensions</title>
+  </properties>
+
+  <body>
+    
+    <section name="Shale Tiger Extensions">
+    <a name="tiger"/>
+
+      <p>FIXME - Describe tiger feature.</p>
+
+    </section>
+
+  </body>
+
+</document>

Propchange: struts/shale/trunk/xdocs/features-tiger-extensions.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/shale/trunk/xdocs/features-tiger-extensions.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/shale/trunk/xdocs/index.xml
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/xdocs/index.xml?rev=356738&r1=356737&r2=356738&view=diff
==============================================================================
--- struts/shale/trunk/xdocs/index.xml (original)
+++ struts/shale/trunk/xdocs/index.xml Tue Dec 13 22:19:37 2005
@@ -227,7 +227,8 @@
           Use Cases Sample App</a>.</li>
       <li><a href="shale-mailreader/apidocs/index.html" target="_blank">
           Mailreader Example App</a>.</li>
-
+      <li><a href="shale-tiger/apidocs/index.html" target="_blank">
+          Tiger Extensions</a>.</li>
       </ul>
 
     </section>

Modified: struts/shale/trunk/xdocs/navigation.xml
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/xdocs/navigation.xml?rev=356738&r1=356737&r2=356738&view=diff
==============================================================================
--- struts/shale/trunk/xdocs/navigation.xml (original)
+++ struts/shale/trunk/xdocs/navigation.xml Tue Dec 13 22:19:37 2005
@@ -33,6 +33,7 @@
         <item name="Tiles Integration"  
href="/features-tiles-integration.html"/>
         <item name="Reusable Views"     href="/features-reusable-views.html"/>
         <item name="Test Framework"     href="/features-test-framework.html"/>
+        <item name="Tiger Extensions"   
href="/features-tiger-extensions.html"/>
     </menu>
 
     <menu name="Quick Links">



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to