Author: kstam
Date: Mon Mar 11 19:44:15 2013
New Revision: 1455298

URL: http://svn.apache.org/r1455298
Log:
JUDDI-563 adding Readme

Added:
    juddi/trunk/juddi-core-openjpa/README.txt
Modified:
    juddi/trunk/juddi-core-openjpa/build.xml
    juddi/trunk/juddi-core-openjpa/src/   (props changed)

Added: juddi/trunk/juddi-core-openjpa/README.txt
URL: 
http://svn.apache.org/viewvc/juddi/trunk/juddi-core-openjpa/README.txt?rev=1455298&view=auto
==============================================================================
--- juddi/trunk/juddi-core-openjpa/README.txt (added)
+++ juddi/trunk/juddi-core-openjpa/README.txt Mon Mar 11 19:44:15 2013
@@ -0,0 +1,6 @@
+Do NOT modify code in this module. It will get overwritten when doing a build
+with files from the juddi-core module. Please modify code and tests in the 
juddi-core
+module instead.
+
+The reason we have this module is so that we can ship a juddi-core-openjpa jar 
with
+pre-enhanced entities for running with OpenJPA.
\ No newline at end of file

Modified: juddi/trunk/juddi-core-openjpa/build.xml
URL: 
http://svn.apache.org/viewvc/juddi/trunk/juddi-core-openjpa/build.xml?rev=1455298&r1=1455297&r2=1455298&view=diff
==============================================================================
--- juddi/trunk/juddi-core-openjpa/build.xml (original)
+++ juddi/trunk/juddi-core-openjpa/build.xml Mon Mar 11 19:44:15 2013
@@ -8,6 +8,16 @@
                </unzip>
        </target>
        
+       <target name="copy-src">
+               <mkdir dir="${basedir}/src/main/java"/>
+               <echo>copy: ${juddi.core.dir}/src/test/java</echo>
+               <copy todir="${basedir}/src/main/java">
+                   <fileset dir="${juddi.core.dir}/src/main/java">
+                      <include name="**/*.java"/>
+                   </fileset>
+               </copy>
+           </target>
+       
        <target name="copy-tests">
         <mkdir dir="${basedir}/src/test/java"/>
         <echo>copy: ${juddi.core.dir}/src/test/java</echo>
@@ -18,6 +28,6 @@
         </copy>
     </target>
        
-       <target name="package-jar" depends="unzip-jar,copy-tests"/>
+       <target name="package-jar" depends="copy-src,copy-tests,unzip-jar"/>
 
 </project>

Propchange: juddi/trunk/juddi-core-openjpa/src/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Mar 11 19:44:15 2013
@@ -0,0 +1 @@
+main



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to