[jbpm-commits] JBoss JBPM SVN: r5750 - in jbpm3/branches/jbpm-3.2-soa: eclipse and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Sat Oct 17 23:26:42 EDT 2009


Author: alex.guizar at jboss.com
Date: 2009-10-17 23:26:42 -0400 (Sat, 17 Oct 2009)
New Revision: 5750

Modified:
   jbpm3/branches/jbpm-3.2-soa/eclipse/readme.txt
   jbpm3/branches/jbpm-3.2-soa/pom.xml
Log:
[JBPM-2591] declare explicit dependency on commons-beanutils

Modified: jbpm3/branches/jbpm-3.2-soa/eclipse/readme.txt
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/eclipse/readme.txt	2009-10-18 03:26:23 UTC (rev 5749)
+++ jbpm3/branches/jbpm-3.2-soa/eclipse/readme.txt	2009-10-18 03:26:42 UTC (rev 5750)
@@ -2,25 +2,27 @@
 # $Id: $ 
 #
 
-1. Edit your subversion config ~/.subversion/config and set the following in each section:
+1. Edit your subversion configuration ~/.subversion/config
+Set the following properties in their corresponding section:
 
 [miscellany]
 enable-auto-props = yes
 
 [auto-props]
-*.bat = svn:keywords=Id Revision;svn:eol-style=LF
+*.bat = svn:keywords=Id Revision;svn:eol-style=CRLF
 *.java = svn:keywords=Id Revision;svn:eol-style=LF
-*.sh = svn:keywords=Id Revision;svn:eol-style=LF
+*.sh = svn:keywords=Id Revision;svn:eol-style=LF;svn:executable
 *.txt = svn:keywords=Id Revision;svn:eol-style=LF
 *.wsdl = svn:keywords=Id Revision;svn:eol-style=LF
 *.xml = svn:keywords=Id Revision;svn:eol-style=LF
 *.xsd = svn:keywords=Id Revision;svn:eol-style=LF
 
-2. If you are using an IDE, make sure that it refers to the same config. So, 
-for example, if you are using Eclipse with Subclipse on windows, you need to
-set Team->SVN->Configuration Location to:
+2. If you are using an IDE, make sure that it refers to the same config.
+With Eclipse and Subclipse this is already the case if 
+Preferences -> Team -> SVN -> Configuration location is set to 
+"Use default config location"
 
-/home/<your user name>/.subversion
-
-3. If you are using Eclipse, set your code style to jbpm.code.templates.xml with 
-Window --> Preferences --> Java --> Code Style --> Formatter --> Import 
+3. If you are using Eclipse, import jbpm.code.templates.xml with
+Preferences -> Java -> Code Style -> Code Templates -> Import
+and jbpm.code.style.xml with 
+Preferences -> Java -> Code Style -> Formatter -> Import 

Modified: jbpm3/branches/jbpm-3.2-soa/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/pom.xml	2009-10-18 03:26:23 UTC (rev 5749)
+++ jbpm3/branches/jbpm-3.2-soa/pom.xml	2009-10-18 03:26:42 UTC (rev 5750)
@@ -11,7 +11,8 @@
 
 <!-- $Id: pom.xml 7412 2008-06-06 13:42:30Z thomas.diesler at jboss.com $ -->
 
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <name>JBoss jBPM3</name>
@@ -47,6 +48,7 @@
     <birt.version>2.2.2</birt.version>
     <bsh.version>1.3.0</bsh.version>
     <cactus.version>1.8.0</cactus.version>
+    <commons.beanutils.version>1.7.0</commons.beanutils.version>
     <commons.fileupload.version>1.2.1</commons.fileupload.version>
     <commons.io.version>1.4</commons.io.version>
     <commons.logging.version>1.1.1</commons.logging.version>
@@ -77,15 +79,15 @@
     <xerces.version>2.6.2</xerces.version>
 
     <!-- Database Driver Versions  -->
-  	<db2jcc.version>3.1.57</db2jcc.version>
+    <db2jcc.version>3.1.57</db2jcc.version>
     <hsqldb.version>1.8.0.7</hsqldb.version>
     <jconnect.version>6.0.5</jconnect.version>
     <jtds.version>1.2.2</jtds.version>
-  	<msjdbc.version>1.2.2828.100</msjdbc.version>
+    <msjdbc.version>1.2.2828.100</msjdbc.version>
     <mysql.connector.version>5.0.7</mysql.connector.version>
     <ojdbc.version>10.2.0.4</ojdbc.version>
     <postgresql.version>8.2-504.jdbc3</postgresql.version>
-	</properties>
+  </properties>
 
   <!-- DependencyManagement -->
   <dependencyManagement>
@@ -133,6 +135,11 @@
         <version>${cactus.version}</version>
       </dependency>
       <dependency>
+        <groupId>commons-beanutils</groupId>
+        <artifactId>commons-beanutils</artifactId>
+        <version>${commons.beanutils.version}</version>
+      </dependency>
+      <dependency>
         <groupId>commons-fileupload</groupId>
         <artifactId>commons-fileupload</artifactId>
         <version>${commons.fileupload.version}</version>
@@ -265,9 +272,9 @@
         <version>${hsqldb.version}</version>
       </dependency>
       <dependency>
-      	<groupId>net.sourceforge.jtds</groupId>
-      	<artifactId>jtds</artifactId>
-      	<version>${jtds.version}</version>
+        <groupId>net.sourceforge.jtds</groupId>
+        <artifactId>jtds</artifactId>
+        <version>${jtds.version}</version>
       </dependency>
       <dependency>
         <groupId>com.microsoft.sqlserver</groupId>



More information about the jbpm-commits mailing list