You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@any23.apache.org by le...@apache.org on 2012/03/22 18:58:53 UTC

svn commit: r1303932 - in /incubator/any23/trunk: core/README.txt plugins/README.txt service/README.txt

Author: lewismc
Date: Thu Mar 22 17:58:52 2012
New Revision: 1303932

URL: http://svn.apache.org/viewvc?rev=1303932&view=rev
Log:
commit to add relevant README's as per ANY23-48.

Added:
    incubator/any23/trunk/core/README.txt
    incubator/any23/trunk/service/README.txt
Modified:
    incubator/any23/trunk/plugins/README.txt

Added: incubator/any23/trunk/core/README.txt
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/core/README.txt?rev=1303932&view=auto
==============================================================================
--- incubator/any23/trunk/core/README.txt (added)
+++ incubator/any23/trunk/core/README.txt Thu Mar 22 17:58:52 2012
@@ -0,0 +1,41 @@
+=============
+Any23 Core
+=============
+
+This is the root dir of the Any23 Core module.
+
+The core library from which the command-line tools support is provided.
+
+Generate Core Packaging
+=========================
+
+To generate the desired Core package, execute 'mvn package' from this directory.
+
+$cd $ANY23-HOME/core
+$ mvn package
+
+From this directory it generates:
+
+.
+├── pom.xml
+├── README.txt
+├── src
+│   ├── main
+│   │   ├── assembly
+│   │   ├── java
+│   │   └── resources
+│   └── test
+├── target
+│   ├── any23-core-0.7.0-incubating-SNAPSHOT.jar <<<
+│   ├── apache-any23-0.7.0-incubating-SNAPSHOT-bin.tar.gz <<<
+│   ├── apache-any23-0.7.0-incubating-SNAPSHOT-bin.zip <<<
+│   ├── appassembler
+│   ├── archive-tmp
+│   ├── classes
+│   ├── generated-sources
+│   ├── maven-archiver
+│   ├── maven-shared-archive-resources
+│   └── test-classes
+...
+
+Once you unzip/tar the relevant file, specific README's can be found in either ./target/*.tar.gz || ./target/*.zip (annotated above with '<<<'), where much more detailed information sources can be located.

Modified: incubator/any23/trunk/plugins/README.txt
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/README.txt?rev=1303932&r1=1303931&r2=1303932&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/README.txt (original)
+++ incubator/any23/trunk/plugins/README.txt Thu Mar 22 17:58:52 2012
@@ -2,7 +2,7 @@
 Any23 Plugins
 =============
 
-This is the root dir of the Any23 plugins.
+This is the root dir of the Any23 Plugins module.
 
 A plugin is an extension of the Any23 core and can be plugged using
 the Plugin Manager capabilities.
@@ -52,9 +52,9 @@ From the basic-crawler directory this ge
 |   |   `-- java
 |   `-- test
 `-- target
-    |-- any23-basic-crawler-1.0.0-incubating-SNAPSHOT.jar
-    |-- apache-any23-basic-crawler-1.0.0-incubating-SNAPSHOT-bin.tar.gz <<<
-    |-- apache-any23-basic-crawler-1.0.0-incubating-SNAPSHOT-bin.zip <<<
+    |-- any23-basic-crawler-${version}.jar
+    |-- apache-any23-basic-crawler-${version}-bin.tar.gz <<<
+    |-- apache-any23-basic-crawler-${version}-bin.zip <<<
     |-- archive-tmp
     |-- classes
     |   |-- META-INF
@@ -66,7 +66,6 @@ From the basic-crawler directory this ge
     |-- surefire-reports
     `-- test-classes
 ...
-45 directories, 56 files
 
-Plugin specific README's can be found in either ./target/*.tar.gz || ./target/*.zip (annotated above with '<<<')
+Plugin specific README's can be found in either ./target/*.tar.gz || ./target/*.zip (annotated above with '<<<'), where much more detailed information sources can be located.
   

Added: incubator/any23/trunk/service/README.txt
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/service/README.txt?rev=1303932&view=auto
==============================================================================
--- incubator/any23/trunk/service/README.txt (added)
+++ incubator/any23/trunk/service/README.txt Thu Mar 22 17:58:52 2012
@@ -0,0 +1,50 @@
+=============
+Any23 Web Service
+=============
+
+This is the root dir of the Any23 Web-Service module.
+
+Apache Any23 provides a Web-Service that can be used to extract RDF from Web documents.
+
+Generate Web-Service Packaging
+===============================
+
+To generate the desired Web-service package, execute 'mvn package' from this directory.
+
+$cd $ANY23-HOME/service
+$ mvn package
+
+From this directory it generates:
+.
+├── pom.xml
+├── README.txt
+├── src
+│   ├── main
+│   │   ├── assembly
+│   │   ├── bin
+│   │   ├── java
+│   │   ├── resources
+│   │   └── webapp
+│   └── test
+│       ├── java
+│       └── resources
+└── target
+    ├── any23-service-${version}.war
+    ├── any23-service-${version}-without-deps.war
+    ├── apache-any23-service-${version}-bin-server-embedded.tar.gz <<<
+    ├── apache-any23-service-${version}-bin-server-embedded.zip <<<
+    ├── apache-any23-service-${version}-bin.tar.gz <<<
+    ├── apache-any23-service-${version}-bin-without-deps.tar.gz <<<
+    ├── apache-any23-service-${version}-bin-without-deps.zip <<<
+    ├── apache-any23-service-${version}-bin.zip <<<
+    ├── archive-tmp
+    ├── classes
+    ├── generated-sources
+    ├── maven-archiver
+    ├── maven-shared-archive-resources
+    ├── surefire
+    ├── surefire-reports
+    └── test-classes
+...
+
+Specific README's can be found in either ./target/*.tar.gz || ./target/*.zip (annotated above with '<<<'), where much more detailed information sources can be located.