You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by aa...@apache.org on 2007/07/29 19:23:13 UTC

svn commit: r560765 - /cayenne/dataviews/trunk/README.txt

Author: aadamchik
Date: Sun Jul 29 10:23:12 2007
New Revision: 560765

URL: http://svn.apache.org/viewvc?view=rev&rev=560765
Log:
CAY-824 Extract all DataView related code in a separate module
(updated README)

Modified:
    cayenne/dataviews/trunk/README.txt

Modified: cayenne/dataviews/trunk/README.txt
URL: http://svn.apache.org/viewvc/cayenne/dataviews/trunk/README.txt?view=diff&rev=560765&r1=560764&r2=560765
==============================================================================
--- cayenne/dataviews/trunk/README.txt (original)
+++ cayenne/dataviews/trunk/README.txt Sun Jul 29 10:23:12 2007
@@ -3,16 +3,31 @@
 This directory contains a dormant "DataViews" subproject that was previously
 shipped with Cayenne. Since Cayenne release 3.0 DataViews were split into a 
 separate package (located in this directory), and are no longer officially released. 
-User can still compile DataViews from Subversion as before.
+User can still compile DataViews from Subversion as described below.
 
 For the history of how DataViews ended up as a separate unsupported project, follow 
 this link:
 
    https://issues.apache.org/cayenne/browse/CAY-824
 
+The main difference in the runtime API with previous release is the use of
+'org.apache.cayenne.conf.DataViewConfiguration' instead of 'org.apache.cayenne.conf.Configuration'
+to load the DataViews. 
+
 VOLUNTEERS NEEDED
 
 A number of users found DataViews technology useful in their Swing apps. If you are 
 one of them and want this technology to evolve further, you are welcome to volunteer.
 Just drop a note to "dev at cayenne dot apache dot org" to introduce yourself and your
 ideas.
+
+BUILDING DATAVIEWS
+
+* You will need Maven (http://maven.apache.org/)
+* Change to the DataViews checkout folder and run this command:
+
+  % mvn clean install
+
+  This installs DataView runtime jar (dataview-x.x.jar) to the local repository.
+  Also this builds a cross-platform runnable DVModeler jar file (DVModeler.jar) under
+  'dvmodeler/target/modeler'.