Author: wsmoak
Date: Tue Jan 31 20:00:25 2006
New Revision: 373981
URL: http://svn.apache.org/viewcvs?rev=373981&view=rev
Log:
Added Maven 1 build files for the new example apps, primarily to generate
Javadoc and other reports for the website.
The war files produced by these builds have *not* been tested.
Added:
struts/shale/trunk/build/blank/
struts/shale/trunk/build/blank/project.properties (with props)
struts/shale/trunk/build/blank/project.xml (with props)
struts/shale/trunk/build/sql-browser/
struts/shale/trunk/build/sql-browser/project.properties (with props)
struts/shale/trunk/build/sql-browser/project.xml (with props)
Added: struts/shale/trunk/build/blank/project.properties
URL:
http://svn.apache.org/viewcvs/struts/shale/trunk/build/blank/project.properties?rev=373981&view=auto
==============================================================================
--- struts/shale/trunk/build/blank/project.properties (added)
+++ struts/shale/trunk/build/blank/project.properties Tue Jan 31 20:00:25 2006
@@ -0,0 +1,11 @@
+
+shale.subdir=blank
+
+maven.src.dir=../../${shale.subdir}/src
+
+maven.checkstyle.header.file=../${shale.subdir}/LICENSE.txt
+
+maven.docs.src=../${shale.subdir}/xdocs
+
+maven.war.src=${maven.src.dir}/web
+
Propchange: struts/shale/trunk/build/blank/project.properties
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: struts/shale/trunk/build/blank/project.properties
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added: struts/shale/trunk/build/blank/project.xml
URL:
http://svn.apache.org/viewcvs/struts/shale/trunk/build/blank/project.xml?rev=373981&view=auto
==============================================================================
--- struts/shale/trunk/build/blank/project.xml (added)
+++ struts/shale/trunk/build/blank/project.xml Tue Jan 31 20:00:25 2006
@@ -0,0 +1,116 @@
+<?xml version="1.0"?>
+<!--
+/*
+ * Copyright 2006 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-blank</artifactId>
+ <name>Shale Blank</name>
+
+ <siteAddress>people.apache.org</siteAddress>
+
<siteDirectory>/www/struts.apache.org/struts-shale/shale-blank/</siteDirectory>
+
+ <build>
+ <sourceDirectory>${maven.src.dir}/java</sourceDirectory>
+ <unitTestSourceDirectory>${maven.src.dir}/test</unitTestSourceDirectory>
+
+ <unitTest>
+ <includes>
+ <include>**/*TestCase.java</include>
+ </includes>
+ <resources>
+ <resource>
+ <directory>${maven.src.dir}/conf</directory>
+ <includes>
+ <include>**/*.xml</include>
+ <include>**/*.dtd</include>
+ </includes>
+ </resource>
+ <resource>
+ <directory>${maven.src.dir}/test</directory>
+ <includes>
+ <include>**/*.xml</include>
+ </includes>
+ </resource>
+ </resources>
+ </unitTest>
+
+ <resources>
+ <resource>
+ <directory>${maven.src.dir}/java</directory>
+ <includes>
+ <include>**/*.properties</include>
+ <include>**/*.gif</include>
+ <include>**/*.xml</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>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>struts</groupId>
+ <artifactId>shale-core</artifactId>
+ <version>1.0.1-SNAPSHOT</version>
+ <properties>
+ <war.bundle>true</war.bundle>
+ </properties>
+ </dependency>
+
+ <dependency>
+ <groupId>struts</groupId>
+ <artifactId>shale-test</artifactId>
+ <version>1.0.1-SNAPSHOT</version>
+ <properties>
+ <scope>test</scope>
+ </properties>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.1.2</version>
+ <properties>
+ <war.bundle>true</war.bundle>
+ </properties>
+ </dependency>
+
+ <dependency>
+ <groupId>taglibs</groupId>
+ <artifactId>standard</artifactId>
+ <version>1.1.2</version>
+ <properties>
+ <war.bundle>true</war.bundle>
+ </properties>
+ </dependency>
+
+
+ </dependencies>
+
+</project>
Propchange: struts/shale/trunk/build/blank/project.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: struts/shale/trunk/build/blank/project.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added: struts/shale/trunk/build/sql-browser/project.properties
URL:
http://svn.apache.org/viewcvs/struts/shale/trunk/build/sql-browser/project.properties?rev=373981&view=auto
==============================================================================
--- struts/shale/trunk/build/sql-browser/project.properties (added)
+++ struts/shale/trunk/build/sql-browser/project.properties Tue Jan 31 20:00:25
2006
@@ -0,0 +1,17 @@
+
+shale.subdir=sql-browser
+
+maven.src.dir=../../${shale.subdir}/src
+
+maven.checkstyle.header.file=../${shale.subdir}/LICENSE.txt
+
+maven.docs.src=../${shale.subdir}/xdocs
+
+maven.war.src=${maven.src.dir}/web
+
+maven.compile.source=1.5
+maven.compile.target=1.5
+
+maven.javadoc.source=1.5
+
+maven.test.skip=true
Propchange: struts/shale/trunk/build/sql-browser/project.properties
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: struts/shale/trunk/build/sql-browser/project.properties
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added: struts/shale/trunk/build/sql-browser/project.xml
URL:
http://svn.apache.org/viewcvs/struts/shale/trunk/build/sql-browser/project.xml?rev=373981&view=auto
==============================================================================
--- struts/shale/trunk/build/sql-browser/project.xml (added)
+++ struts/shale/trunk/build/sql-browser/project.xml Tue Jan 31 20:00:25 2006
@@ -0,0 +1,153 @@
+<?xml version="1.0"?>
+<!--
+/*
+ * 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.
+ */
+ -->
+
+<project>
+
+ <extend>../project.xml</extend>
+ <artifactId>shale-sql-browser</artifactId>
+ <name>Shale SQL Browser</name>
+
+ <siteAddress>people.apache.org</siteAddress>
+
<siteDirectory>/www/struts.apache.org/struts-shale/shale-sql-browser/</siteDirectory>
+
+ <build>
+ <sourceDirectory>${maven.src.dir}/java</sourceDirectory>
+ <unitTestSourceDirectory>${maven.src.dir}/test</unitTestSourceDirectory>
+
+ <sourceModifications>
+ <sourceModification>
+ <className>java.lang.Annotation</className>
+ <excludes>
+ <exclude>**/*</exclude>
+ </excludes>
+ </sourceModification>
+ </sourceModifications>
+
+ <unitTest>
+ <includes>
+ <include>**/*TestCase.java</include>
+ </includes>
+ <resources>
+ <resource>
+ <directory>${maven.src.dir}/conf</directory>
+ <includes>
+ <include>**/*.xml</include>
+ <include>**/*.dtd</include>
+ </includes>
+ </resource>
+ <resource>
+ <directory>${maven.src.dir}/test</directory>
+ <includes>
+ <include>**/*.xml</include>
+ </includes>
+ </resource>
+ </resources>
+ </unitTest>
+
+ <resources>
+ <resource>
+ <directory>${maven.src.dir}/java</directory>
+ <includes>
+ <include>**/*.properties</include>
+ <include>**/*.gif</include>
+ <include>**/*.xml</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>struts</groupId>
+ <artifactId>shale-core</artifactId>
+ <version>1.0.1-SNAPSHOT</version>
+ <properties>
+ <war.bundle>true</war.bundle>
+ </properties>
+ </dependency>
+
+ <dependency>
+ <groupId>struts</groupId>
+ <artifactId>shale-tiger</artifactId>
+ <version>1.0.1-SNAPSHOT</version>
+ <properties>
+ <war.bundle>true</war.bundle>
+ </properties>
+ </dependency>
+
+ <dependency>
+ <groupId>struts</groupId>
+ <artifactId>shale-test</artifactId>
+ <version>1.0.1-SNAPSHOT</version>
+ <properties>
+ <scope>test</scope>
+ </properties>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.1.2</version>
+ <properties>
+ <war.bundle>true</war.bundle>
+ </properties>
+ </dependency>
+
+ <dependency>
+ <groupId>taglibs</groupId>
+ <artifactId>standard</artifactId>
+ <version>1.1.2</version>
+ <properties>
+ <war.bundle>true</war.bundle>
+ </properties>
+ </dependency>
+
+ </dependencies>
+
+</project>
Propchange: struts/shale/trunk/build/sql-browser/project.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: struts/shale/trunk/build/sql-browser/project.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]