Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B2094200B92 for ; Wed, 28 Sep 2016 16:15:11 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B0C9A160AB4; Wed, 28 Sep 2016 14:15:11 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id EF018160AD4 for ; Wed, 28 Sep 2016 16:15:10 +0200 (CEST) Received: (qmail 33703 invoked by uid 500); 28 Sep 2016 14:15:09 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 33464 invoked by uid 99); 28 Sep 2016 14:15:09 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Sep 2016 14:15:09 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7F330DFB6F; Wed, 28 Sep 2016 14:15:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ebourg@apache.org To: commits@commons.apache.org Date: Wed, 28 Sep 2016 14:15:11 -0000 Message-Id: <67be45b5690a432e9d907759ea801fda@git.apache.org> In-Reply-To: <02a23ed72ea64adab7d3bff629517d73@git.apache.org> References: <02a23ed72ea64adab7d3bff629517d73@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/3] commons-rng git commit: Renamed README to README.txt archived-at: Wed, 28 Sep 2016 14:15:11 -0000 Renamed README to README.txt Project: http://git-wip-us.apache.org/repos/asf/commons-rng/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-rng/commit/59ce1a9d Tree: http://git-wip-us.apache.org/repos/asf/commons-rng/tree/59ce1a9d Diff: http://git-wip-us.apache.org/repos/asf/commons-rng/diff/59ce1a9d Branch: refs/heads/master Commit: 59ce1a9d7b1f403ed84a3777936bf1bd1835b20a Parents: 62f2421 Author: Emmanuel Bourg Authored: Wed Sep 28 16:14:42 2016 +0200 Committer: Emmanuel Bourg Committed: Wed Sep 28 16:14:42 2016 +0200 ---------------------------------------------------------------------- src/userguide/README | 22 ---------------------- src/userguide/README.txt | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 22 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-rng/blob/59ce1a9d/src/userguide/README ---------------------------------------------------------------------- diff --git a/src/userguide/README b/src/userguide/README deleted file mode 100644 index 7cc79ca..0000000 --- a/src/userguide/README +++ /dev/null @@ -1,22 +0,0 @@ -This directory contains source code that is not part of the Apache -Commons RNG library. It contains syntactically correct and working -examples of use. - -In order to run one of the applications (a class that must contain a -"main" method), you would type (in a shell console) a command similar -to the following: - $ mvn -q exec:java \ - -Dexec.mainClass=org.apache.commons.rng.userguide.RandomStressTester \ - -Dexec.args="[args]" - -Alternatively, a "standalone" JAR can be created with the following -command: - $ mvn -Dmainclass=org.apache.commons.rng.userguide.RandomStressTester \ - -Djarbasename=RandomStressTester \ - clean compile assembly:single -where the value of the "mainclass" argument is the fully-qualified name -of the class whose "main" method will be the program's entry point, and -the "jarbasename" argument is the basename of the JAR file to be created. -Then, the application can be run with the following command: - $ java -jar RandomStressTester [args] -where "[args]" is the list of arguments passed to the "main" method. http://git-wip-us.apache.org/repos/asf/commons-rng/blob/59ce1a9d/src/userguide/README.txt ---------------------------------------------------------------------- diff --git a/src/userguide/README.txt b/src/userguide/README.txt new file mode 100644 index 0000000..7cc79ca --- /dev/null +++ b/src/userguide/README.txt @@ -0,0 +1,22 @@ +This directory contains source code that is not part of the Apache +Commons RNG library. It contains syntactically correct and working +examples of use. + +In order to run one of the applications (a class that must contain a +"main" method), you would type (in a shell console) a command similar +to the following: + $ mvn -q exec:java \ + -Dexec.mainClass=org.apache.commons.rng.userguide.RandomStressTester \ + -Dexec.args="[args]" + +Alternatively, a "standalone" JAR can be created with the following +command: + $ mvn -Dmainclass=org.apache.commons.rng.userguide.RandomStressTester \ + -Djarbasename=RandomStressTester \ + clean compile assembly:single +where the value of the "mainclass" argument is the fully-qualified name +of the class whose "main" method will be the program's entry point, and +the "jarbasename" argument is the basename of the JAR file to be created. +Then, the application can be run with the following command: + $ java -jar RandomStressTester [args] +where "[args]" is the list of arguments passed to the "main" method.