You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by jb...@apache.org on 2010/09/07 01:52:43 UTC

svn commit: r993181 - in /commons/sandbox/gsoc/2010/scxml-js/trunk: mvn-ant-build.xml src/assembly/ src/assembly/bin.xml src/assembly/src.xml

Author: jbeard
Date: Mon Sep  6 23:52:42 2010
New Revision: 993181

URL: http://svn.apache.org/viewvc?rev=993181&view=rev
Log:
Added assembly configuration files, and changed mvn-ant-build download-dependencies task to download requirejs.

Added:
    commons/sandbox/gsoc/2010/scxml-js/trunk/src/assembly/
    commons/sandbox/gsoc/2010/scxml-js/trunk/src/assembly/bin.xml   (with props)
    commons/sandbox/gsoc/2010/scxml-js/trunk/src/assembly/src.xml   (with props)
Modified:
    commons/sandbox/gsoc/2010/scxml-js/trunk/mvn-ant-build.xml

Modified: commons/sandbox/gsoc/2010/scxml-js/trunk/mvn-ant-build.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/mvn-ant-build.xml?rev=993181&r1=993180&r2=993181&view=diff
==============================================================================
--- commons/sandbox/gsoc/2010/scxml-js/trunk/mvn-ant-build.xml (original)
+++ commons/sandbox/gsoc/2010/scxml-js/trunk/mvn-ant-build.xml Mon Sep  6 23:52:42 2010
@@ -126,7 +126,7 @@
 
 		<if>
 			<not>
-				<available file="${require-js-lib}" type="dir"/>
+				<available file="${require-js-lib}/require.js" type="file"/>
 			</not>
 
 			<then>

Added: commons/sandbox/gsoc/2010/scxml-js/trunk/src/assembly/bin.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/src/assembly/bin.xml?rev=993181&view=auto
==============================================================================
--- commons/sandbox/gsoc/2010/scxml-js/trunk/src/assembly/bin.xml (added)
+++ commons/sandbox/gsoc/2010/scxml-js/trunk/src/assembly/bin.xml Mon Sep  6 23:52:42 2010
@@ -0,0 +1,44 @@
+<!--
+ 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.
+-->
+<assembly>
+    <id>bin</id>
+    <formats>
+        <format>tar.gz</format>
+        <format>zip</format>
+    </formats>
+    <includeSiteDirectory>false</includeSiteDirectory>
+    <fileSets>
+        <fileSet>
+            <includes>
+                <include>LICENSE.txt</include>
+                <include>NOTICE.txt</include>
+                <include>RELEASE-NOTES.txt</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>target</directory>
+            <outputDirectory></outputDirectory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>target/site/apidocs</directory>
+            <outputDirectory>apidocs</outputDirectory>
+        </fileSet>
+    </fileSets>
+</assembly>

Propchange: commons/sandbox/gsoc/2010/scxml-js/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: commons/sandbox/gsoc/2010/scxml-js/trunk/src/assembly/src.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/src/assembly/src.xml?rev=993181&view=auto
==============================================================================
--- commons/sandbox/gsoc/2010/scxml-js/trunk/src/assembly/src.xml (added)
+++ commons/sandbox/gsoc/2010/scxml-js/trunk/src/assembly/src.xml Mon Sep  6 23:52:42 2010
@@ -0,0 +1,41 @@
+<!--
+ 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.
+-->
+<assembly>
+    <id>src</id>
+    <formats>
+        <format>tar.gz</format>
+        <format>zip</format>
+    </formats>
+    <baseDirectory>${project.artifactId}-0.10-src</baseDirectory>
+    <fileSets>
+        <fileSet>
+            <includes>
+                <include>build.properties.sample</include>
+                <include>build.xml</include>
+                <include>LICENSE.txt</include>
+                <include>NOTICE.txt</include>
+                <include>pom.xml</include>
+                <include>RELEASE-NOTES.txt</include>
+                <include>scxml-asl-header.txt</include>
+                <include>scxml-checks.xml</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>src</directory>
+        </fileSet>
+    </fileSets>
+</assembly>

Propchange: commons/sandbox/gsoc/2010/scxml-js/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
    svn:eol-style = native