You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by ad...@apache.org on 2007/07/03 10:11:04 UTC

svn commit: r552705 - in /incubator/tuscany/java/das: distribution/binary/src/main/assembly/das.xml samples/Readme.htm samples/customer/pom.xml

Author: adrianocrestani
Date: Tue Jul  3 01:11:03 2007
New Revision: 552705

URL: http://svn.apache.org/viewvc?view=rev&rev=552705
Log:
- Added a Readme file on samples' top level folder that summarizes all samples
- Added build.xml for customer sample

Added:
    incubator/tuscany/java/das/samples/Readme.htm
Modified:
    incubator/tuscany/java/das/distribution/binary/src/main/assembly/das.xml
    incubator/tuscany/java/das/samples/customer/pom.xml

Modified: incubator/tuscany/java/das/distribution/binary/src/main/assembly/das.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/das/distribution/binary/src/main/assembly/das.xml?view=diff&rev=552705&r1=552704&r2=552705
==============================================================================
--- incubator/tuscany/java/das/distribution/binary/src/main/assembly/das.xml (original)
+++ incubator/tuscany/java/das/distribution/binary/src/main/assembly/das.xml Tue Jul  3 01:11:03 2007
@@ -89,6 +89,11 @@
                <outputDirectory>tuscany-das-${das.version}/samples/customer</outputDirectory>
                <fileMode>644</fileMode>
             </file>
+            <file>
+               <source>../../samples/customer/build.xml</source>
+               <outputDirectory>tuscany-das-${das.version}/samples/customer</outputDirectory>
+               <fileMode>644</fileMode>
+            </file>
         </files>
 
 

Added: incubator/tuscany/java/das/samples/Readme.htm
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/das/samples/Readme.htm?view=auto&rev=552705
==============================================================================
--- incubator/tuscany/java/das/samples/Readme.htm (added)
+++ incubator/tuscany/java/das/samples/Readme.htm Tue Jul  3 01:11:03 2007
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<HTML>
+<HEAD>
+	<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=windows-1252">
+	<TITLE>Tuscany RDB DAS Sample</TITLE>
+	<META NAME="GENERATOR" CONTENT="BrOffice.org 2.0  (Win32)">
+	<META NAME="CREATED" CONTENT="20070703;53381">
+	<META NAME="CHANGEDBY" CONTENT="a a">
+	<META NAME="CHANGED" CONTENT="20070703;190294">
+</HEAD>
+<BODY LANG="en-US" DIR="LTR">
+<H1 LANG="pt-BR">DAS Samples</H1>
+<P LANG="pt-BR"><FONT FACE="Times New Roman, serif">The DAS Java
+Samples demonstrates the DAS features and how to get started with
+them. Below a list of available samples:</FONT></P>
+<TABLE WIDTH=100% BORDER=1 CELLPADDING=4 CELLSPACING=3>
+	<COL WIDTH=42*>
+	<COL WIDTH=214*>
+	<TR VALIGN=TOP>
+		<TD WIDTH=17%>
+			<H1 LANG="pt-BR" ALIGN=CENTER STYLE="margin-top: 0cm"><FONT FACE="Times New Roman, serif"><FONT SIZE=3>Companyweb</FONT></FONT></H1>
+		</TD>
+		<TD WIDTH=83%>
+			<P LANG="pt-BR"><FONT FACE="Times New Roman, serif"><FONT SIZE=3>This
+			stand-alone sample demonstrates the SDO RDB Data Access Service in
+			the context of a simple web application. </FONT></FONT>
+			</P>
+		</TD>
+	</TR>
+	<TR VALIGN=TOP>
+		<TD WIDTH=17%>
+			<H1 LANG="pt-BR" ALIGN=CENTER STYLE="margin-top: 0cm"><FONT FACE="Times New Roman, serif"><FONT SIZE=3>Customer
+			</FONT></FONT>
+			</H1>
+		</TD>
+		<TD WIDTH=83%>
+			<P LANG="pt-BR"><FONT FACE="Times New Roman, serif"><FONT SIZE=3>This
+			stand-alone sample demonstrates the RDB Data Access Service in the
+			context of a simple java application. </FONT></FONT>
+			</P>
+		</TD>
+	</TR>
+	<TR VALIGN=TOP>
+		<TD WIDTH=17%>
+			<P LANG="pt-BR" ALIGN=CENTER><FONT FACE="Times New Roman, serif"><FONT SIZE=3><B>Ajax</B>
+			<B>DAS Web</B> </FONT></FONT>
+			</P>
+		</TD>
+		<TD WIDTH=83%>
+			<P LANG="pt-BR"><FONT FACE="Times New Roman, serif"><FONT SIZE=3><FONT SIZE=2 STYLE="font-size: 11pt"><FONT FACE="Arial">This
+			web sample demonstrates SDO RDB Data Access Service using Ajax</FONT></FONT>
+			<FONT SIZE=2 STYLE="font-size: 11pt"><FONT FACE="Arial">for the
+			generic framework. &nbsp;</FONT></FONT> </FONT></FONT>
+			</P>
+		</TD>
+	</TR>
+</TABLE>
+<P LANG="pt-BR"><BR><BR>
+</P>
+<P LANG="pt-BR"><BR><BR>
+</P>
+</BODY>
+</HTML>
\ No newline at end of file

Modified: incubator/tuscany/java/das/samples/customer/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/das/samples/customer/pom.xml?view=diff&rev=552705&r1=552704&r2=552705
==============================================================================
--- incubator/tuscany/java/das/samples/customer/pom.xml (original)
+++ incubator/tuscany/java/das/samples/customer/pom.xml Tue Jul  3 01:11:03 2007
@@ -58,5 +58,21 @@
               <directory>src/main/resources</directory>
             </resource>
         </resources>
+	   <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifest> 
+                    <mainClass>org.apache.tuscany.samples.das.customer.CustomerClient</mainClass> 
+                    <addClasspath>true</addClasspath> 
+                    <classpathPrefix>../../lib/</classpathPrefix> 
+                   </manifest> 
+
+                    </archive>
+                </configuration>
+            </plugin>
+        </plugins>
     </build>
 </project>



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org