You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tuscany.apache.org by Jeremy Boynes <jb...@apache.org> on 2007/03/14 19:06:49 UTC

Re: svn commit: r518245 - /incubator/tuscany/java/sca/core-samples/standalone/calculator/readme.html

Thanks for catching the launcher name.
The application jar though is "calc.jar"

--
Jeremy

On Mar 14, 2007, at 11:03 AM, isilval@apache.org wrote:

> Author: isilval
> Date: Wed Mar 14 11:03:12 2007
> New Revision: 518245
>
> URL: http://svn.apache.org/viewvc?view=rev&rev=518245
> Log:
> use correct file names
>
> Modified:
>     incubator/tuscany/java/sca/core-samples/standalone/calculator/ 
> readme.html
>
> Modified: incubator/tuscany/java/sca/core-samples/standalone/ 
> calculator/readme.html
> URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/core- 
> samples/standalone/calculator/readme.html? 
> view=diff&rev=518245&r1=518244&r2=518245
> ====================================================================== 
> ========
> --- incubator/tuscany/java/sca/core-samples/standalone/calculator/ 
> readme.html (original)
> +++ incubator/tuscany/java/sca/core-samples/standalone/calculator/ 
> readme.html Wed Mar 14 11:03:12 2007
> @@ -53,7 +53,7 @@
>      To run the client, use the <code>launcher</code> command from  
> the standalone distribution:
>  </p>
>  <pre class="command">
> -$ java -jar {tuscany.installDir}/bin/launcher target/calc.jar {add| 
> subtract|multiply|divide} {param} {param}
> +$ java -jar {tuscany.installDir}/bin/launcher.jar target/ 
> calculator.jar {add|subtract|multiply|divide} {param} {param}
>  </pre>
>
>  <p>where <code>tuscany.installDir</code> is the path where you  
> installed the standalone distribution.</p>
> @@ -62,7 +62,7 @@
>      The sample when run will display to the standard output:
>  </p>
>  <pre class="command">
> -$ java -jar {tuscany.installDir}/bin/launcher target/calc.jar add 2 5
> +$ java -jar {tuscany.installDir}/bin/launcher.jar target/ 
> calculator.jar add 2 5
>  result = 7.0
>  </pre>
>  </body>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
> For additional commands, e-mail: tuscany-commits-help@ws.apache.org
>


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


Re: svn commit: r518245 - /incubator/tuscany/java/sca/core-samples/standalone/calculator/readme.html

Posted by Jeremy Boynes <jb...@apache.org>.
Hmm, it does for me:

jeremy-boynes-computer:~/tuscany/java/sca/core-samples/standalone/ 
calculator jboynes$ ls -1 target
calc.jar
classes
surefire-reports
test-classes


On Mar 14, 2007, at 11:12 AM, Ignacio Silva-Lepe wrote:

> Hmm, I think it's supposed to be calc.jar but that's not what
> shows up in my build ...
>
>
> On 3/14/07, Jeremy Boynes <jb...@apache.org> wrote:
>>
>> Thanks for catching the launcher name.
>> The application jar though is "calc.jar"
>>
>> --
>> Jeremy
>>
>> On Mar 14, 2007, at 11:03 AM, isilval@apache.org wrote:
>>
>> > Author: isilval
>> > Date: Wed Mar 14 11:03:12 2007
>> > New Revision: 518245
>> >
>> > URL: http://svn.apache.org/viewvc?view=rev&rev=518245
>> > Log:
>> > use correct file names
>> >
>> > Modified:
>> >     incubator/tuscany/java/sca/core-samples/standalone/calculator/
>> > readme.html
>> >
>> > Modified: incubator/tuscany/java/sca/core-samples/standalone/
>> > calculator/readme.html
>> > URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/core-
>> > samples/standalone/calculator/readme.html?
>> > view=diff&rev=518245&r1=518244&r2=518245
>> >  
>> ===================================================================== 
>> =
>> > ========
>> > --- incubator/tuscany/java/sca/core-samples/standalone/calculator/
>> > readme.html (original)
>> > +++ incubator/tuscany/java/sca/core-samples/standalone/calculator/
>> > readme.html Wed Mar 14 11:03:12 2007
>> > @@ -53,7 +53,7 @@
>> >      To run the client, use the <code>launcher</code> command from
>> > the standalone distribution:
>> >  </p>
>> >  <pre class="command">
>> > -$ java -jar {tuscany.installDir}/bin/launcher target/calc.jar  
>> {add|
>> > subtract|multiply|divide} {param} {param}
>> > +$ java -jar {tuscany.installDir}/bin/launcher.jar target/
>> > calculator.jar {add|subtract|multiply|divide} {param} {param}
>> >  </pre>
>> >
>> >  <p>where <code>tuscany.installDir</code> is the path where you
>> > installed the standalone distribution.</p>
>> > @@ -62,7 +62,7 @@
>> >      The sample when run will display to the standard output:
>> >  </p>
>> >  <pre class="command">
>> > -$ java -jar {tuscany.installDir}/bin/launcher target/calc.jar  
>> add 2 5
>> > +$ java -jar {tuscany.installDir}/bin/launcher.jar target/
>> > calculator.jar add 2 5
>> >  result = 7.0
>> >  </pre>
>> >  </body>
>> >
>> >
>> >
>> >  
>> ---------------------------------------------------------------------
>> > To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
>> > For additional commands, e-mail: tuscany-commits-help@ws.apache.org
>> >
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
>> For additional commands, e-mail: tuscany-dev-help@ws.apache.org
>>
>>


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


Re: svn commit: r518245 - /incubator/tuscany/java/sca/core-samples/standalone/calculator/readme.html

Posted by Ignacio Silva-Lepe <is...@gmail.com>.
Hmm, I think it's supposed to be calc.jar but that's not what
shows up in my build ...


On 3/14/07, Jeremy Boynes <jb...@apache.org> wrote:
>
> Thanks for catching the launcher name.
> The application jar though is "calc.jar"
>
> --
> Jeremy
>
> On Mar 14, 2007, at 11:03 AM, isilval@apache.org wrote:
>
> > Author: isilval
> > Date: Wed Mar 14 11:03:12 2007
> > New Revision: 518245
> >
> > URL: http://svn.apache.org/viewvc?view=rev&rev=518245
> > Log:
> > use correct file names
> >
> > Modified:
> >     incubator/tuscany/java/sca/core-samples/standalone/calculator/
> > readme.html
> >
> > Modified: incubator/tuscany/java/sca/core-samples/standalone/
> > calculator/readme.html
> > URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/core-
> > samples/standalone/calculator/readme.html?
> > view=diff&rev=518245&r1=518244&r2=518245
> > ======================================================================
> > ========
> > --- incubator/tuscany/java/sca/core-samples/standalone/calculator/
> > readme.html (original)
> > +++ incubator/tuscany/java/sca/core-samples/standalone/calculator/
> > readme.html Wed Mar 14 11:03:12 2007
> > @@ -53,7 +53,7 @@
> >      To run the client, use the <code>launcher</code> command from
> > the standalone distribution:
> >  </p>
> >  <pre class="command">
> > -$ java -jar {tuscany.installDir}/bin/launcher target/calc.jar {add|
> > subtract|multiply|divide} {param} {param}
> > +$ java -jar {tuscany.installDir}/bin/launcher.jar target/
> > calculator.jar {add|subtract|multiply|divide} {param} {param}
> >  </pre>
> >
> >  <p>where <code>tuscany.installDir</code> is the path where you
> > installed the standalone distribution.</p>
> > @@ -62,7 +62,7 @@
> >      The sample when run will display to the standard output:
> >  </p>
> >  <pre class="command">
> > -$ java -jar {tuscany.installDir}/bin/launcher target/calc.jar add 2 5
> > +$ java -jar {tuscany.installDir}/bin/launcher.jar target/
> > calculator.jar add 2 5
> >  result = 7.0
> >  </pre>
> >  </body>
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
> > For additional commands, e-mail: tuscany-commits-help@ws.apache.org
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: tuscany-dev-help@ws.apache.org
>
>