You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by gb...@apache.org on 2010/07/11 02:26:54 UTC

svn commit: r962954 - /pivot/trunk/build.xml

Author: gbrown
Date: Sun Jul 11 00:26:54 2010
New Revision: 962954

URL: http://svn.apache.org/viewvc?rev=962954&view=rev
Log:
Add Web Server project source to Maven targets.

Modified:
    pivot/trunk/build.xml

Modified: pivot/trunk/build.xml
URL: http://svn.apache.org/viewvc/pivot/trunk/build.xml?rev=962954&r1=962953&r2=962954&view=diff
==============================================================================
--- pivot/trunk/build.xml (original)
+++ pivot/trunk/build.xml Sun Jul 11 00:26:54 2010
@@ -67,6 +67,7 @@ limitations under the License.
     <property name="jar.charts.sources" value="${ant.project.name}-charts-${version}-sources.jar" />
     <property name="jar.core.sources" value="${ant.project.name}-core-${version}-sources.jar" />
     <property name="jar.web.sources" value="${ant.project.name}-web-${version}-sources.jar" />
+    <property name="jar.web-server.sources" value="${ant.project.name}-web-server-${version}-sources.jar" />
     <property name="jar.wtk.sources" value="${ant.project.name}-wtk-${version}-sources.jar" />
     <property name="jar.wtk-terra.sources" value="${ant.project.name}-wtk-terra-${version}-sources.jar" />
 
@@ -292,7 +293,8 @@ limitations under the License.
     <target name="package-sources" description="Packages all projects into JAR files" depends="trim-whitespace">
         <package-sources project="charts" jarFile="${jar.charts.sources}" title="Charts"/>
         <package-sources project="core" jarFile="${jar.core.sources}" title="Core"/>
-        <package-sources project="web" jarFile="${jar.web.sources}" title="Web Queries"/>
+        <package-sources project="web" jarFile="${jar.web.sources}" title="Web"/>
+        <package-sources project="web-server" jarFile="${jar.web-server.sources}" title="Web Server"/>
         <package-sources project="wtk" jarFile="${jar.wtk.sources}" title="WTK"/>
         <package-sources project="wtk-terra" jarFile="${jar.wtk-terra.sources}" title="WTK Terra Theme Provider"/>
     </target>
@@ -657,6 +659,10 @@ limitations under the License.
             <artifact:pom file="web/pom.xml"/>
             <attach file="lib/${jar.web.sources}" classifier="sources" />
         </artifact:install>
+        <artifact:install file="lib/${jar.web-server}">
+            <artifact:pom file="web/pom.xml"/>
+            <attach file="lib/${jar.web-server.sources}" classifier="sources" />
+        </artifact:install>
         <artifact:install file="lib/${jar.wtk}">
             <artifact:pom file="wtk/pom.xml"/>
             <attach file="lib/${jar.wtk.sources}" classifier="sources" />