Obsolete files.

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

Branch: refs/heads/1.0-release
Commit: c5bc47d64c01990a87b43264bd5477b5a0cff8f8
Parents: 82a9f73
Author: Gilles <er...@apache.org>
Authored: Sun Nov 27 07:12:08 2016 +0100
Committer: Gilles <er...@apache.org>
Committed: Sun Nov 27 07:12:08 2016 +0100

----------------------------------------------------------------------
 commons-rng-core/src/userguide/README.txt |  22 ------
 commons-rng-core/src/userguide/pom.xml    | 101 -------------------------
 2 files changed, 123 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-rng/blob/c5bc47d6/commons-rng-core/src/userguide/README.txt
----------------------------------------------------------------------
diff --git a/commons-rng-core/src/userguide/README.txt 
b/commons-rng-core/src/userguide/README.txt
deleted file mode 100644
index 7cc79ca..0000000
--- a/commons-rng-core/src/userguide/README.txt
+++ /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/c5bc47d6/commons-rng-core/src/userguide/pom.xml
----------------------------------------------------------------------
diff --git a/commons-rng-core/src/userguide/pom.xml 
b/commons-rng-core/src/userguide/pom.xml
deleted file mode 100644
index 833e5fa..0000000
--- a/commons-rng-core/src/userguide/pom.xml
+++ /dev/null
@@ -1,101 +0,0 @@
-<?xml version="1.0"?>
-<!--
-   Licensed to the Apache Software Foundation (ASF) under one or more
-   contributor license agreements.  See the NOTICE file distributed with
-   this work for additional information regarding copyright ownership.
-   The ASF licenses this file to You under the Apache License, Version 2.0
-   (the "License"); you may not use this file except in compliance with
-   the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
--->
-<!--
-  Stripped down maven pom used for generating example code for the commons 
math userguide.
--->
-<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.commons</groupId>
-  <artifactId>commons-rng-examples</artifactId>
-  <version>1.0-SNAPSHOT</version>
-  <name>Commons RNG User Guide</name>
-  <inceptionYear>2016</inceptionYear>
-  <description>Examples</description>
-  <url>http://commons.apache.org/rng/</url>
-  <issueManagement>
-    <system>jira</system>
-    <url>http://issues.apache.org/jira/browse/RNG</url>
-  </issueManagement>
-  <scm>
-    
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/rng/trunk</connection>
-    
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/rng/trunk</developerConnection>
-    <url>http://svn.apache.org/viewvc/commons/proper/rng/trunk</url>
-  </scm>
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-    <maven.compiler.source>1.7</maven.compiler.source>
-    <maven.compiler.target>1.7</maven.compiler.target>
-  </properties> 
-
-  <build>
-    <sourceDirectory>java</sourceDirectory>
-
-    <plugins>
-
-      <plugin>
-        <artifactId>maven-assembly-plugin</artifactId>
-        <configuration>
-          <archive>
-            <manifest>
-              <mainClass>${mainclass}</mainClass>
-            </manifest>
-          </archive>
-          <descriptorRefs>
-            <descriptorRef>jar-with-dependencies</descriptorRef>
-          </descriptorRefs>
-          <finalName>${jarbasename}</finalName>
-          <appendAssemblyId>false</appendAssemblyId>
-        </configuration>
-        <executions>
-          <execution>
-            <id>make-assembly</id> <!-- this is used for inheritance merges -->
-            <phase>package</phase> <!-- bind to the packaging phase -->
-            <goals>
-              <goal>single</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <version>3.5.1</version>
-        <configuration>
-          <compilerArgs>
-            <!-- <arg>-verbose</arg> -->
-            <arg>-Xlint:all,-options,-path</arg>
-          </compilerArgs>
-        </configuration>
-      </plugin>
-
-   </plugins>
-
-  </build>
-  <reporting>
-  </reporting>
-
-  <dependencies>
-      <dependency>
-          <groupId>org.apache.commons</groupId>
-          <artifactId>commons-rng</artifactId>
-          <version>1.0-SNAPSHOT</version>
-      </dependency>
-  </dependencies>
-</project>

Reply via email to