You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by eb...@apache.org on 2016/09/28 14:15:09 UTC

[1/3] commons-rng git commit: Java 1.6 -> Java 6

Repository: commons-rng
Updated Branches:
  refs/heads/master fd22dc61f -> 59ce1a9d7


Java 1.6 -> Java 6


Project: http://git-wip-us.apache.org/repos/asf/commons-rng/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-rng/commit/8bd01a41
Tree: http://git-wip-us.apache.org/repos/asf/commons-rng/tree/8bd01a41
Diff: http://git-wip-us.apache.org/repos/asf/commons-rng/diff/8bd01a41

Branch: refs/heads/master
Commit: 8bd01a41bb787d44f029f89c7146fe2575ca015b
Parents: fd22dc6
Author: Emmanuel Bourg <eb...@apache.org>
Authored: Wed Sep 28 15:54:55 2016 +0200
Committer: Emmanuel Bourg <eb...@apache.org>
Committed: Wed Sep 28 15:54:55 2016 +0200

----------------------------------------------------------------------
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-rng/blob/8bd01a41/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f07a8ab..ee5c2b7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -106,7 +106,7 @@
     <commons.osgi.private>org.apache.commons.rng.internal</commons.osgi.private>
     <!-- do not use snapshot suffix here -->
     <commons.release.version>1.0</commons.release.version>
-    <commons.release.desc>(requires Java 1.6+)</commons.release.desc>
+    <commons.release.desc>(requires Java 6+)</commons.release.desc>
     <!-- <commons.rc.version>RC1</commons.rc.version> -->
     <commons.binary.suffix>-bin</commons.binary.suffix>
 


[2/3] commons-rng git commit: JUnit upgrade (4.11 -> 4.12)

Posted by eb...@apache.org.
JUnit upgrade (4.11 -> 4.12)


Project: http://git-wip-us.apache.org/repos/asf/commons-rng/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-rng/commit/62f24213
Tree: http://git-wip-us.apache.org/repos/asf/commons-rng/tree/62f24213
Diff: http://git-wip-us.apache.org/repos/asf/commons-rng/diff/62f24213

Branch: refs/heads/master
Commit: 62f242130c5dd5b3a219c24c1b2aeff120da1063
Parents: 8bd01a4
Author: Emmanuel Bourg <eb...@apache.org>
Authored: Wed Sep 28 16:01:23 2016 +0200
Committer: Emmanuel Bourg <eb...@apache.org>
Committed: Wed Sep 28 16:01:23 2016 +0200

----------------------------------------------------------------------
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-rng/blob/62f24213/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index ee5c2b7..d73a66d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -89,7 +89,7 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>4.11</version>
+      <version>4.12</version>
       <scope>test</scope>
     </dependency>
   </dependencies>


[3/3] commons-rng git commit: Renamed README to README.txt

Posted by eb...@apache.org.
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 <eb...@apache.org>
Authored: Wed Sep 28 16:14:42 2016 +0200
Committer: Emmanuel Bourg <eb...@apache.org>
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.