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/02/28 14:17:30 UTC

svn commit: r1294634 - /incubator/any23/trunk/plugins/README.txt

Author: lewismc
Date: Tue Feb 28 13:17:30 2012
New Revision: 1294634

URL: http://svn.apache.org/viewvc?rev=1294634&view=rev
Log:
trivial commit to plugins README to document generating plugin packages.

Modified:
    incubator/any23/trunk/plugins/README.txt

Modified: incubator/any23/trunk/plugins/README.txt
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/README.txt?rev=1294634&r1=1294633&r2=1294634&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/README.txt (original)
+++ incubator/any23/trunk/plugins/README.txt Tue Feb 28 13:17:30 2012
@@ -31,4 +31,42 @@ formats and convert them to triples.
 integration-test
 ----------------
 
-This module contains the integration tests for all the defined plugins.
\ No newline at end of file
+This module contains the integration tests for all the defined plugins.
+
+Generate Plugin Packaging
+=========================
+
+To generate the desired plugin package, navigate to the plugin directory and execute 'mvn package'
+e.g. to generate the basic-crawler plugin package
+
+$cd $ANY23-HOME/plugins/basic-crawler
+$ mvn package
+
+From the basic-crawler directory this generates
+
+.
+|-- pom.xml
+|-- src
+|   |-- main
+|   |   |-- assembly
+|   |   `-- 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 <<<
+    |-- archive-tmp
+    |-- classes
+    |   |-- META-INF
+    |   `-- org
+    |-- generated-sources
+    |-- maven-archiver
+    |-- maven-shared-archive-resources
+    |-- surefire
+    |-- 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 '<<<')
+