Author: wsmoak
Date: Fri Jan 6 19:03:21 2006
New Revision: 366639
URL: http://svn.apache.org/viewcvs?rev=366639&view=rev
Log:
Split out org.apache.shale.remoting into a separate jar. See: r366441
Added:
struts/shale/trunk/build/remoting/
struts/shale/trunk/build/remoting/project.properties (with props)
struts/shale/trunk/build/remoting/project.xml (with props)
Modified:
struts/shale/trunk/build/core-library/project.xml
struts/shale/trunk/build/use-cases/project.xml
Modified: struts/shale/trunk/build/core-library/project.xml
URL:
http://svn.apache.org/viewcvs/struts/shale/trunk/build/core-library/project.xml?rev=366639&r1=366638&r2=366639&view=diff
==============================================================================
--- struts/shale/trunk/build/core-library/project.xml (original)
+++ struts/shale/trunk/build/core-library/project.xml Fri Jan 6 19:03:21 2006
@@ -2,7 +2,7 @@
<!--
- Copyright 2004-2005 The Apache Software Foundation.
+ Copyright 2004-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.
@@ -42,6 +42,7 @@
<className>x.y.z.Class</className>
<property/>
<excludes>
+ <exclude>org/apache/shale/remoting/**</exclude>
<exclude>org/apache/shale/spring/**</exclude>
<exclude>org/apache/shale/tiles/**</exclude>
</excludes>
Added: struts/shale/trunk/build/remoting/project.properties
URL:
http://svn.apache.org/viewcvs/struts/shale/trunk/build/remoting/project.properties?rev=366639&view=auto
==============================================================================
--- struts/shale/trunk/build/remoting/project.properties (added)
+++ struts/shale/trunk/build/remoting/project.properties Fri Jan 6 19:03:21
2006
@@ -0,0 +1,11 @@
+
+maven.repo.remote=http://www.ibiblio.org/maven/,http://cvs.apache.org/repository
+
+shale.subdir=core-library
+
+maven.src.dir=../../${shale.subdir}/src
+
+maven.checkstyle.header.file=../${shale.subdir}/LICENSE.txt
+
+maven.docs.src=../${shale.subdir}/xdocs
+
Propchange: struts/shale/trunk/build/remoting/project.properties
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: struts/shale/trunk/build/remoting/project.properties
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added: struts/shale/trunk/build/remoting/project.xml
URL:
http://svn.apache.org/viewcvs/struts/shale/trunk/build/remoting/project.xml?rev=366639&view=auto
==============================================================================
--- struts/shale/trunk/build/remoting/project.xml (added)
+++ struts/shale/trunk/build/remoting/project.xml Fri Jan 6 19:03:21 2006
@@ -0,0 +1,104 @@
+<?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>
+ <id>shale-remoting</id>
+ <name>Shale Remoting</name>
+ <currentVersion>1.0.1-SNAPSHOT</currentVersion>
+
+ <!-- Gump integration -->
+ <gumpRepositoryId>jakarta</gumpRepositoryId>
+
+ <siteAddress>people.apache.org</siteAddress>
+
<siteDirectory>/www/struts.apache.org/struts-shale/shale-remoting/</siteDirectory>
+
+ <build>
+
+ <sourceDirectory>${maven.src.dir}/java</sourceDirectory>
+
+ <unitTestSourceDirectory>${maven.src.dir}/test</unitTestSourceDirectory>
+
+ <sourceModifications>
+ <sourceModification>
+ <className>x.y.z.Class</className>
+ <excludes>
+ <exclude>org/apache/shale/application/**</exclude>
+ <exclude>org/apache/shale/component/**</exclude>
+ <exclude>org/apache/shale/dialog/**</exclude>
+ <exclude>org/apache/shale/faces/**</exclude>
+ <exclude>org/apache/shale/remote/**</exclude>
+ <exclude>org/apache/shale/renderer/**</exclude>
+ <exclude>org/apache/shale/resources/**</exclude>
+ <exclude>org/apache/shale/spring/**</exclude>
+ <exclude>org/apache/shale/taglib/**</exclude>
+ <exclude>org/apache/shale/tiles/**</exclude>
+ <exclude>org/apache/shale/util/**</exclude>
+ <exclude>org/apache/shale/validator/**</exclude>
+ <exclude>org/apache/shale/view/**</exclude>
+ </excludes>
+ </sourceModification>
+ </sourceModifications>
+
+ <!-- Unit test cases -->
+ <unitTest>
+ <includes>
+ <include>org/apache/shale/remoting/**/*Test.java</include>
+ </includes>
+ </unitTest>
+
+ <resources>
+ <resource>
+
<directory>${maven.src.dir}/java/org/apache/shale/remoting</directory>
+ <targetPath>META-INF</targetPath>
+ <includes>
+ <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>
+ <!-- Copy non-Java Sources -->
+ <resource>
+ <directory>${maven.src.dir}/java</directory>
+ <includes>
+ <include>org/apache/shale/remoting/*.properties</include>
+ </includes>
+ </resource>
+ </resources>
+ </build>
+
+ <dependencies>
+ <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/remoting/project.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: struts/shale/trunk/build/remoting/project.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Modified: struts/shale/trunk/build/use-cases/project.xml
URL:
http://svn.apache.org/viewcvs/struts/shale/trunk/build/use-cases/project.xml?rev=366639&r1=366638&r2=366639&view=diff
==============================================================================
--- struts/shale/trunk/build/use-cases/project.xml (original)
+++ struts/shale/trunk/build/use-cases/project.xml Fri Jan 6 19:03:21 2006
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<!--
/*
- * Copyright 2005 The Apache Software Foundation.
+ * Copyright 2005-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.
@@ -81,6 +81,15 @@
<dependency>
<groupId>shale</groupId>
<artifactId>shale-core</artifactId>
+ <version>1.0.1-SNAPSHOT</version>
+ <properties>
+ <war.bundle>true</war.bundle>
+ </properties>
+ </dependency>
+
+ <dependency>
+ <groupId>shale</groupId>
+ <artifactId>shale-remoting</artifactId>
<version>1.0.1-SNAPSHOT</version>
<properties>
<war.bundle>true</war.bundle>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]