You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2010/04/24 09:06:02 UTC

svn commit: r937598 - in /tuscany/sca-java-2.x/trunk/samples/webapps/helloworld: pom.xml src/main/webapp/WEB-INF/sca-contributions/ src/main/webapp/WEB-INF/web.xml src/main/webapp/embeddedContributions/

Author: antelder
Date: Sat Apr 24 07:06:02 2010
New Revision: 937598

URL: http://svn.apache.org/viewvc?rev=937598&view=rev
Log:
Move the contributions folder to be inside web-inf so its not accesible

Added:
    tuscany/sca-java-2.x/trunk/samples/webapps/helloworld/src/main/webapp/WEB-INF/sca-contributions/   (with props)
Removed:
    tuscany/sca-java-2.x/trunk/samples/webapps/helloworld/src/main/webapp/embeddedContributions/
Modified:
    tuscany/sca-java-2.x/trunk/samples/webapps/helloworld/pom.xml
    tuscany/sca-java-2.x/trunk/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.xml

Modified: tuscany/sca-java-2.x/trunk/samples/webapps/helloworld/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/webapps/helloworld/pom.xml?rev=937598&r1=937597&r2=937598&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/samples/webapps/helloworld/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/samples/webapps/helloworld/pom.xml Sat Apr 24 07:06:02 2010
@@ -34,7 +34,7 @@
 
         <dependency>
             <groupId>org.apache.tuscany.sca.shades</groupId>
-            <artifactId>tuscany-base</artifactId>
+            <artifactId>tuscany-base-nodep</artifactId>
             <version>2.0-SNAPSHOT</version>
         </dependency>
 
@@ -61,7 +61,7 @@
                        <artifactId>sample-helloworld</artifactId>
                        <version>${pom.version}</version>
                        <!-- should really go in the target folder but i can't get jetty:run to work using that -->
-                       <outputDirectory>src/main/webapp/embeddedContributions</outputDirectory>
+                       <outputDirectory>src/main/webapp/WEB-INF/sca-contributions</outputDirectory>
                      </artifactItem>
                    </artifactItems>
                 </configuration>

Propchange: tuscany/sca-java-2.x/trunk/samples/webapps/helloworld/src/main/webapp/WEB-INF/sca-contributions/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sat Apr 24 07:06:02 2010
@@ -0,0 +1 @@
+*.*

Modified: tuscany/sca-java-2.x/trunk/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.xml?rev=937598&r1=937597&r2=937598&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.xml (original)
+++ tuscany/sca-java-2.x/trunk/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.xml Sat Apr 24 07:06:02 2010
@@ -26,7 +26,7 @@
 
   <context-param>
     <param-name>contributions</param-name>
-    <param-value>/embeddedContributions</param-value>
+    <param-value>/WEB-INF/sca-contributions</param-value>
   </context-param>
 
   <context-param>