You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrp4j-dev@portals.apache.org by dl...@apache.org on 2006/12/23 23:58:05 UTC

svn commit: r489941 - in /portals/wsrp4j/trunk: README.txt pom.xml

Author: dlouzan
Date: Sat Dec 23 14:58:04 2006
New Revision: 489941

URL: http://svn.apache.org/viewvc?view=rev&rev=489941
Log:
- Added hibernate version to pom.xml
- Added new module persistence-db to pom.xml
- Update README.txt with new dependency on JTA for Hibernate

Modified:
    portals/wsrp4j/trunk/README.txt
    portals/wsrp4j/trunk/pom.xml

Modified: portals/wsrp4j/trunk/README.txt
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/README.txt?view=diff&rev=489941&r1=489940&r2=489941
==============================================================================
--- portals/wsrp4j/trunk/README.txt (original)
+++ portals/wsrp4j/trunk/README.txt Sat Dec 23 14:58:04 2006
@@ -71,6 +71,8 @@
 
      - Apache Xalan-Java 2.7.0 has been tested.
 
+   * The JTA transaction API jar from Sun (needed for persistence-db module)
+
 3. Basic installation and configuration
    ------------------------------------
 
@@ -166,7 +168,21 @@
        $ mvn install:install-file -DgroupId=xalan -DartifactId=serializer \
            -Dversion=2.7.0 -Dpackaging=jar -Dfile=serializer.jar
 
-   3.5 Basic installation and configuration of Apache Pluto
+   3.5 Basic installation and configuration of JTA (Java Transaction API) jar
+       ----------------------------------------------------------------------
+
+   * Due to licensing issues, the JTA jar can't be dowloaded from iBiblio, you
+     have to manually download and install it on your local maven repository.
+     This file is needed by Hibernate for wsrp4j-persistence-db
+
+     - Dowload the file jta-1_0_1B-classes.zip (JTA 1.0.1B) from:
+           http://java.sun.com/products/jta/
+     
+     - Install the file jta-1_0_1B-classes.zip to your Maven repository:
+       $ mvn install:install-file -DgroupId=javax.transaction -DartifactId=jta \
+           -Dversion=1.0.1B -Dpackaging=jar -Dfile=jta-1_0_1B-classes.zip
+
+   3.6 Basic installation and configuration of Apache Pluto
        ----------------------------------------------------
 
    * Installation of Apache Pluto 1.0.1 on Unix-like operating systems:

Modified: portals/wsrp4j/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/pom.xml?view=diff&rev=489941&r1=489940&r2=489941
==============================================================================
--- portals/wsrp4j/trunk/pom.xml (original)
+++ portals/wsrp4j/trunk/pom.xml Sat Dec 23 14:58:04 2006
@@ -197,6 +197,7 @@
     <commons-fileupload.version>1.1.1</commons-fileupload.version>
     <commons-lang.version>2.1</commons-lang.version>
     <commons-logging.version>1.0.4</commons-logging.version>
+    <hibernate.version>3.2.1.ga</hibernate.version>
     <javax-mail.version>1.4</javax-mail.version>
     <jstl.version>1.0.6</jstl.version>
     <junit.version>3.8.1</junit.version>
@@ -215,6 +216,7 @@
     <module>commons-producer</module>
     <module>consumer-proxyportlet</module>
     <module>consumer-swingconsumer</module>
+    <module>persistence-db</module>
     <module>persistence-xml</module>
     <module>producer</module>
     <module>testportlet</module>