exo-jcr SVN: r1122 - jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/storage/fs.
by do-not-reply@jboss.org
Author: tolusha
Date: 2009-12-17 09:02:12 -0500 (Thu, 17 Dec 2009)
New Revision: 1122
Modified:
jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/storage/fs/TestRandomValueIO.java
Log:
EXOJCR-300: test fix
Modified: jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/storage/fs/TestRandomValueIO.java
===================================================================
--- jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/storage/fs/TestRandomValueIO.java 2009-12-17 14:00:47 UTC (rev 1121)
+++ jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/storage/fs/TestRandomValueIO.java 2009-12-17 14:02:12 UTC (rev 1122)
@@ -417,16 +417,6 @@
exv.update(new ByteArrayInputStream(update1String.getBytes()), update1String.length(), pos);
- // test the value for correct stream
- BufferedInputStream vstream = new BufferedInputStream(exv.getStream());
- vstream.mark((int)exv.getLength() + 1);
-
- // first 2M of stream data must be same as on setProperty()
- compareStream(new FileInputStream(testFile), vstream, 0, 0, testFile.length());
-
- vstream.reset();
- compareStream(new ByteArrayInputStream(update1String.getBytes()), vstream, 0, pos, update1String.length());
-
// apply to the Property and save
p.setValue(exv);
testRoot.save();
16 years, 7 months
exo-jcr SVN: r1121 - jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/value.
by do-not-reply@jboss.org
Author: tolusha
Date: 2009-12-17 09:00:47 -0500 (Thu, 17 Dec 2009)
New Revision: 1121
Modified:
jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/value/TestTransientValueDataSpooling.java
Log:
EXOJCR-324: test fix
Modified: jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/value/TestTransientValueDataSpooling.java
===================================================================
--- jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/value/TestTransientValueDataSpooling.java 2009-12-17 12:55:35 UTC (rev 1120)
+++ jcr/branches/1.12.0-OPT/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/value/TestTransientValueDataSpooling.java 2009-12-17 14:00:47 UTC (rev 1121)
@@ -97,6 +97,9 @@
{
File tmpFile = createBLOBTempFile(250);
+ System.gc();
+ Thread.sleep(2000);
+
String[] countBefore = tmpdir.list(new FilenameFilter()
{
public boolean accept(File dir, String name)
@@ -109,6 +112,9 @@
node.setProperty("testProp", new FileInputStream(tmpFile));
root.save();
+ System.gc();
+ Thread.sleep(2000);
+
String[] countAfter = tmpdir.list(new FilenameFilter()
{
public boolean accept(File dir, String name)
@@ -130,6 +136,9 @@
{
File tmpFile = createBLOBTempFile(250);
+ System.gc();
+ Thread.sleep(2000);
+
String[] countBefore = tmpdir.list(new FilenameFilter()
{
public boolean accept(File dir, String name)
@@ -143,6 +152,9 @@
node.getProperty("testProp").getStream().close();
root.save();
+ System.gc();
+ Thread.sleep(2000);
+
String[] countAfter = tmpdir.list(new FilenameFilter()
{
public boolean accept(File dir, String name)
@@ -183,24 +195,27 @@
{
cLog = (TransactionChangesLog)itemStates;
}
-
- private boolean isSpooling(String[] before, String[] after) {
- int newFilecount = 0;
-
- List<String> lBefore = new ArrayList<String>();
- for (String sBefore : before)
- lBefore.add(sBefore);
-
- for (String sAfter : after) {
- if (!lBefore.contains(sAfter)) {
- if (haveValueStorage && newFilecount == 0 || newFilecount == 0)
- newFilecount++;
- else
- return true;
+
+ private boolean isSpooling(String[] before, String[] after)
+ {
+ int newFilecount = 0;
+
+ List<String> lBefore = new ArrayList<String>();
+ for (String sBefore : before)
+ lBefore.add(sBefore);
+
+ for (String sAfter : after)
+ {
+ if (!lBefore.contains(sAfter))
+ {
+ if (haveValueStorage && newFilecount == 0 || newFilecount == 0)
+ newFilecount++;
+ else
+ return true;
+ }
+
}
-
- }
-
- return false;
+
+ return false;
}
}
16 years, 7 months
exo-jcr SVN: r1120 - in jcr/branches/1.12.0-JBCCACHE: applications and 16 other directories.
by do-not-reply@jboss.org
Author: pnedonosko
Date: 2009-12-17 07:55:35 -0500 (Thu, 17 Dec 2009)
New Revision: 1120
Modified:
jcr/branches/1.12.0-JBCCACHE/applications/exo.jcr.applications.config/pom.xml
jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.cmd
jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.sh
jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.backupconsole/pom.xml
jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.browser/pom.xml
jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.fckeditor/pom.xml
jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.rest/pom.xml
jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.ear/pom.xml
jcr/branches/1.12.0-JBCCACHE/applications/product-exo-jcr-as-jboss-ear.xml
jcr/branches/1.12.0-JBCCACHE/applications/product-exo-jcr-as-jonas-ear.xml
jcr/branches/1.12.0-JBCCACHE/applications/product-exo-jcr-as-tomcat6.xml
jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.core/pom.xml
jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.ext/pom.xml
jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.ftp/pom.xml
jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.webdav/pom.xml
jcr/branches/1.12.0-JBCCACHE/exo.jcr.connectors.localadapter/pom.xml
jcr/branches/1.12.0-JBCCACHE/exo.jcr.framework.command/pom.xml
jcr/branches/1.12.0-JBCCACHE/exo.jcr.framework.ftpclient/pom.xml
jcr/branches/1.12.0-JBCCACHE/exo.jcr.framework.web/pom.xml
jcr/branches/1.12.0-JBCCACHE/packaging/module/pom.xml
jcr/branches/1.12.0-JBCCACHE/pom.xml
Log:
EXOJCR-325 versions
Modified: jcr/branches/1.12.0-JBCCACHE/applications/exo.jcr.applications.config/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/applications/exo.jcr.applications.config/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/applications/exo.jcr.applications.config/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.config</artifactId>
Modified: jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.cmd
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.cmd 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.cmd 2009-12-17 12:55:35 UTC (rev 1120)
@@ -1 +1 @@
-java -jar exo.jcr.applications.backupconsole-1.12.0-Beta05-SNAPSHOT.jar %*
+java -jar exo.jcr.applications.backupconsole-1.12.0-JBCCACHE-SNAPHSOT.jar %*
Modified: jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.sh
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.sh 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.backupconsole/bin/jcrbackup.sh 2009-12-17 12:55:35 UTC (rev 1120)
@@ -1,3 +1,3 @@
#!/bin/sh
-java -jar exo.jcr.applications.backupconsole-1.12.0-Beta05-SNAPSHOT.jar $*
+java -jar exo.jcr.applications.backupconsole-1.12.0-JBCCACHE-SNAPHSOT.jar $*
Modified: jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.backupconsole/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.backupconsole/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.backupconsole/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.backupconsole</artifactId>
Modified: jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.browser/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.browser/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.browser/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.browser</artifactId>
Modified: jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.fckeditor/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.fckeditor/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.fckeditor/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.fckeditor</artifactId>
Modified: jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.rest/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.rest/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.applications.rest/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.rest</artifactId>
Modified: jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.ear/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.ear/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/applications/java/exo.jcr.ear/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.ear</artifactId>
Modified: jcr/branches/1.12.0-JBCCACHE/applications/product-exo-jcr-as-jboss-ear.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/applications/product-exo-jcr-as-jboss-ear.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/applications/product-exo-jcr-as-jboss-ear.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.applications.config</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-JBCCACHE-SNAPHSOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.ear</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-JBCCACHE-SNAPHSOT</version>
<type>ear</type>
<scope>runtime</scope>
</dependency>
Modified: jcr/branches/1.12.0-JBCCACHE/applications/product-exo-jcr-as-jonas-ear.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/applications/product-exo-jcr-as-jonas-ear.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/applications/product-exo-jcr-as-jonas-ear.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.applications.config</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-JBCCACHE-SNAPHSOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.ear</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-JBCCACHE-SNAPHSOT</version>
<type>ear</type>
<scope>runtime</scope>
</dependency>
Modified: jcr/branches/1.12.0-JBCCACHE/applications/product-exo-jcr-as-tomcat6.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/applications/product-exo-jcr-as-tomcat6.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/applications/product-exo-jcr-as-tomcat6.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.applications.config</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-JBCCACHE-SNAPHSOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.core/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.core/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.core/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.component.core</artifactId>
Modified: jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.ext/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.ext/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.ext/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.component.ext</artifactId>
Modified: jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.ftp/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.ftp/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.ftp/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.component.ftp</artifactId>
Modified: jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.webdav/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.webdav/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/exo.jcr.component.webdav/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.component.webdav</artifactId>
Modified: jcr/branches/1.12.0-JBCCACHE/exo.jcr.connectors.localadapter/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/exo.jcr.connectors.localadapter/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/exo.jcr.connectors.localadapter/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.connectors.localadapter</artifactId>
Modified: jcr/branches/1.12.0-JBCCACHE/exo.jcr.framework.command/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/exo.jcr.framework.command/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/exo.jcr.framework.command/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.framework.command</artifactId>
Modified: jcr/branches/1.12.0-JBCCACHE/exo.jcr.framework.ftpclient/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/exo.jcr.framework.ftpclient/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/exo.jcr.framework.ftpclient/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.framework.ftpclient</artifactId>
Modified: jcr/branches/1.12.0-JBCCACHE/exo.jcr.framework.web/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/exo.jcr.framework.web/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/exo.jcr.framework.web/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.framework.web</artifactId>
Modified: jcr/branches/1.12.0-JBCCACHE/packaging/module/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/packaging/module/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/packaging/module/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: jcr/branches/1.12.0-JBCCACHE/pom.xml
===================================================================
--- jcr/branches/1.12.0-JBCCACHE/pom.xml 2009-12-17 12:26:22 UTC (rev 1119)
+++ jcr/branches/1.12.0-JBCCACHE/pom.xml 2009-12-17 12:55:35 UTC (rev 1120)
@@ -30,7 +30,7 @@
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta06-SNAPSHOT</version>
+ <version>1.12.0-JCRCACHE-SNAPSHOT</version>
<packaging>pom</packaging>
<name>eXo JCR</name>
16 years, 7 months
exo-jcr SVN: r1119 - jcr/branches.
by do-not-reply@jboss.org
Author: pnedonosko
Date: 2009-12-17 07:26:22 -0500 (Thu, 17 Dec 2009)
New Revision: 1119
Added:
jcr/branches/1.12.0-JBCCACHE/
Log:
EXOJCR-325 branch for JCR cache based on JBossCache (from on Beta05 sources)
Copied: jcr/branches/1.12.0-JBCCACHE (from rev 1118, jcr/trunk)
16 years, 7 months
exo-jcr SVN: r1118 - in jcr/trunk: applications/exo.jcr.applications.config and 14 other directories.
by do-not-reply@jboss.org
Author: pnedonosko
Date: 2009-12-16 12:30:36 -0500 (Wed, 16 Dec 2009)
New Revision: 1118
Modified:
jcr/trunk/applications/exo.jcr.applications.config/pom.xml
jcr/trunk/applications/java/exo.jcr.applications.backupconsole/pom.xml
jcr/trunk/applications/java/exo.jcr.applications.browser/pom.xml
jcr/trunk/applications/java/exo.jcr.applications.fckeditor/pom.xml
jcr/trunk/applications/java/exo.jcr.applications.rest/pom.xml
jcr/trunk/applications/java/exo.jcr.ear/pom.xml
jcr/trunk/exo.jcr.component.core/pom.xml
jcr/trunk/exo.jcr.component.ext/pom.xml
jcr/trunk/exo.jcr.component.ftp/pom.xml
jcr/trunk/exo.jcr.component.webdav/pom.xml
jcr/trunk/exo.jcr.connectors.localadapter/pom.xml
jcr/trunk/exo.jcr.framework.command/pom.xml
jcr/trunk/exo.jcr.framework.ftpclient/pom.xml
jcr/trunk/exo.jcr.framework.web/pom.xml
jcr/trunk/packaging/module/pom.xml
jcr/trunk/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: jcr/trunk/applications/exo.jcr.applications.config/pom.xml
===================================================================
--- jcr/trunk/applications/exo.jcr.applications.config/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/applications/exo.jcr.applications.config/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.config</artifactId>
Modified: jcr/trunk/applications/java/exo.jcr.applications.backupconsole/pom.xml
===================================================================
--- jcr/trunk/applications/java/exo.jcr.applications.backupconsole/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/applications/java/exo.jcr.applications.backupconsole/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.backupconsole</artifactId>
Modified: jcr/trunk/applications/java/exo.jcr.applications.browser/pom.xml
===================================================================
--- jcr/trunk/applications/java/exo.jcr.applications.browser/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/applications/java/exo.jcr.applications.browser/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.browser</artifactId>
Modified: jcr/trunk/applications/java/exo.jcr.applications.fckeditor/pom.xml
===================================================================
--- jcr/trunk/applications/java/exo.jcr.applications.fckeditor/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/applications/java/exo.jcr.applications.fckeditor/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.fckeditor</artifactId>
Modified: jcr/trunk/applications/java/exo.jcr.applications.rest/pom.xml
===================================================================
--- jcr/trunk/applications/java/exo.jcr.applications.rest/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/applications/java/exo.jcr.applications.rest/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.rest</artifactId>
Modified: jcr/trunk/applications/java/exo.jcr.ear/pom.xml
===================================================================
--- jcr/trunk/applications/java/exo.jcr.ear/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/applications/java/exo.jcr.ear/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.ear</artifactId>
Modified: jcr/trunk/exo.jcr.component.core/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.core/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/exo.jcr.component.core/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.component.core</artifactId>
Modified: jcr/trunk/exo.jcr.component.ext/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.ext/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/exo.jcr.component.ext/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.component.ext</artifactId>
Modified: jcr/trunk/exo.jcr.component.ftp/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.ftp/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/exo.jcr.component.ftp/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.component.ftp</artifactId>
Modified: jcr/trunk/exo.jcr.component.webdav/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.webdav/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/exo.jcr.component.webdav/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.component.webdav</artifactId>
Modified: jcr/trunk/exo.jcr.connectors.localadapter/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.connectors.localadapter/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/exo.jcr.connectors.localadapter/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.connectors.localadapter</artifactId>
Modified: jcr/trunk/exo.jcr.framework.command/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.framework.command/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/exo.jcr.framework.command/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.framework.command</artifactId>
Modified: jcr/trunk/exo.jcr.framework.ftpclient/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.framework.ftpclient/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/exo.jcr.framework.ftpclient/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.framework.ftpclient</artifactId>
Modified: jcr/trunk/exo.jcr.framework.web/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.framework.web/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/exo.jcr.framework.web/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.framework.web</artifactId>
Modified: jcr/trunk/packaging/module/pom.xml
===================================================================
--- jcr/trunk/packaging/module/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/packaging/module/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: jcr/trunk/pom.xml
===================================================================
--- jcr/trunk/pom.xml 2009-12-16 17:29:44 UTC (rev 1117)
+++ jcr/trunk/pom.xml 2009-12-16 17:30:36 UTC (rev 1118)
@@ -30,7 +30,7 @@
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05</version>
+ <version>1.12.0-Beta06-SNAPSHOT</version>
<packaging>pom</packaging>
<name>eXo JCR</name>
@@ -44,9 +44,9 @@
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/exo-jcr/jcr/tags/1.12.0-Beta05</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/exo-jcr/jcr/tags/1.12.0-Beta05</developerConnection>
- <url>https://svn.jboss.org/repos/exo-jcr/jcr/tags/1.12.0-Beta05</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/exo-jcr/jcr/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/exo-jcr/jcr/trunk</developerConnection>
+ <url>https://svn.jboss.org/repos/exo-jcr/jcr/trunk</url>
</scm>
<modules>
16 years, 7 months
exo-jcr SVN: r1117 - jcr/tags.
by do-not-reply@jboss.org
Author: pnedonosko
Date: 2009-12-16 12:29:44 -0500 (Wed, 16 Dec 2009)
New Revision: 1117
Added:
jcr/tags/1.12.0-Beta05/
Log:
[maven-scm] copy for tag 1.12.0-Beta05
Copied: jcr/tags/1.12.0-Beta05 (from rev 1116, jcr/trunk)
16 years, 7 months
exo-jcr SVN: r1116 - in jcr/trunk: applications/exo.jcr.applications.config and 14 other directories.
by do-not-reply@jboss.org
Author: pnedonosko
Date: 2009-12-16 12:29:09 -0500 (Wed, 16 Dec 2009)
New Revision: 1116
Modified:
jcr/trunk/applications/exo.jcr.applications.config/pom.xml
jcr/trunk/applications/java/exo.jcr.applications.backupconsole/pom.xml
jcr/trunk/applications/java/exo.jcr.applications.browser/pom.xml
jcr/trunk/applications/java/exo.jcr.applications.fckeditor/pom.xml
jcr/trunk/applications/java/exo.jcr.applications.rest/pom.xml
jcr/trunk/applications/java/exo.jcr.ear/pom.xml
jcr/trunk/exo.jcr.component.core/pom.xml
jcr/trunk/exo.jcr.component.ext/pom.xml
jcr/trunk/exo.jcr.component.ftp/pom.xml
jcr/trunk/exo.jcr.component.webdav/pom.xml
jcr/trunk/exo.jcr.connectors.localadapter/pom.xml
jcr/trunk/exo.jcr.framework.command/pom.xml
jcr/trunk/exo.jcr.framework.ftpclient/pom.xml
jcr/trunk/exo.jcr.framework.web/pom.xml
jcr/trunk/packaging/module/pom.xml
jcr/trunk/pom.xml
Log:
[maven-release-plugin] prepare release 1.12.0-Beta05
Modified: jcr/trunk/applications/exo.jcr.applications.config/pom.xml
===================================================================
--- jcr/trunk/applications/exo.jcr.applications.config/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/applications/exo.jcr.applications.config/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<artifactId>exo.jcr.applications.config</artifactId>
Modified: jcr/trunk/applications/java/exo.jcr.applications.backupconsole/pom.xml
===================================================================
--- jcr/trunk/applications/java/exo.jcr.applications.backupconsole/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/applications/java/exo.jcr.applications.backupconsole/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<artifactId>exo.jcr.applications.backupconsole</artifactId>
Modified: jcr/trunk/applications/java/exo.jcr.applications.browser/pom.xml
===================================================================
--- jcr/trunk/applications/java/exo.jcr.applications.browser/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/applications/java/exo.jcr.applications.browser/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<artifactId>exo.jcr.applications.browser</artifactId>
Modified: jcr/trunk/applications/java/exo.jcr.applications.fckeditor/pom.xml
===================================================================
--- jcr/trunk/applications/java/exo.jcr.applications.fckeditor/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/applications/java/exo.jcr.applications.fckeditor/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<artifactId>exo.jcr.applications.fckeditor</artifactId>
Modified: jcr/trunk/applications/java/exo.jcr.applications.rest/pom.xml
===================================================================
--- jcr/trunk/applications/java/exo.jcr.applications.rest/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/applications/java/exo.jcr.applications.rest/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<artifactId>exo.jcr.applications.rest</artifactId>
Modified: jcr/trunk/applications/java/exo.jcr.ear/pom.xml
===================================================================
--- jcr/trunk/applications/java/exo.jcr.ear/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/applications/java/exo.jcr.ear/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<artifactId>exo.jcr.ear</artifactId>
Modified: jcr/trunk/exo.jcr.component.core/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.core/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/exo.jcr.component.core/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<artifactId>exo.jcr.component.core</artifactId>
Modified: jcr/trunk/exo.jcr.component.ext/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.ext/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/exo.jcr.component.ext/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<artifactId>exo.jcr.component.ext</artifactId>
Modified: jcr/trunk/exo.jcr.component.ftp/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.ftp/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/exo.jcr.component.ftp/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<artifactId>exo.jcr.component.ftp</artifactId>
Modified: jcr/trunk/exo.jcr.component.webdav/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.webdav/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/exo.jcr.component.webdav/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<artifactId>exo.jcr.component.webdav</artifactId>
Modified: jcr/trunk/exo.jcr.connectors.localadapter/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.connectors.localadapter/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/exo.jcr.connectors.localadapter/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<artifactId>exo.jcr.connectors.localadapter</artifactId>
Modified: jcr/trunk/exo.jcr.framework.command/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.framework.command/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/exo.jcr.framework.command/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<artifactId>exo.jcr.framework.command</artifactId>
Modified: jcr/trunk/exo.jcr.framework.ftpclient/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.framework.ftpclient/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/exo.jcr.framework.ftpclient/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<artifactId>exo.jcr.framework.ftpclient</artifactId>
Modified: jcr/trunk/exo.jcr.framework.web/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.framework.web/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/exo.jcr.framework.web/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<artifactId>exo.jcr.framework.web</artifactId>
Modified: jcr/trunk/packaging/module/pom.xml
===================================================================
--- jcr/trunk/packaging/module/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/packaging/module/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: jcr/trunk/pom.xml
===================================================================
--- jcr/trunk/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
+++ jcr/trunk/pom.xml 2009-12-16 17:29:09 UTC (rev 1116)
@@ -30,7 +30,7 @@
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.12.0-Beta05-SNAPSHOT</version>
+ <version>1.12.0-Beta05</version>
<packaging>pom</packaging>
<name>eXo JCR</name>
@@ -44,9 +44,9 @@
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/exo-jcr/jcr/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/exo-jcr/jcr/trunk</developerConnection>
- <url>https://svn.jboss.org/repos/exo-jcr/jcr/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/exo-jcr/jcr/tags/1.12.0-Beta05</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/exo-jcr/jcr/tags/1.12.0-Beta05</developerConnection>
+ <url>https://svn.jboss.org/repos/exo-jcr/jcr/tags/1.12.0-Beta05</url>
</scm>
<modules>
16 years, 7 months
exo-jcr SVN: r1115 - in jcr/trunk: exo.jcr.component.core and 1 other directories.
by do-not-reply@jboss.org
Author: pnedonosko
Date: 2009-12-16 12:21:55 -0500 (Wed, 16 Dec 2009)
New Revision: 1115
Modified:
jcr/trunk/exo.jcr.component.core/pom.xml
jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/WorkspacePersistentDataManager.java
jcr/trunk/pom.xml
Log:
dependency on kernel-2.2.0-Beta05, core 2.3.0-Beta05, ws 2.1.0-Beta05
Modified: jcr/trunk/exo.jcr.component.core/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.core/pom.xml 2009-12-16 17:09:08 UTC (rev 1114)
+++ jcr/trunk/exo.jcr.component.core/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
@@ -535,6 +535,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<phase>test</phase>
+ <forkMode>${exo.test.forkMode}</forkMode>
<goals>
<goal>test</goal>
</goals>
@@ -547,7 +548,8 @@
<includes>
<include>**/**/TestErrorMultithreading__.java</include>
<include>**/**/TestConcurrentItems__.java</include>
- <include>**/**/TestInvalidItemState__.java</include>
+
+ <include>**/**/TestValueImpl.java</include>
</includes>
</configuration>
</plugin>
Modified: jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/WorkspacePersistentDataManager.java
===================================================================
--- jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/WorkspacePersistentDataManager.java 2009-12-16 17:09:08 UTC (rev 1114)
+++ jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/WorkspacePersistentDataManager.java 2009-12-16 17:21:55 UTC (rev 1115)
@@ -118,7 +118,7 @@
*/
public void save(final ItemStateChangesLog changesLog) throws RepositoryException
{
-
+ //LOG.info(changesLog.dump())
// check if this workspace container is not read-only
if (readOnly && !(changesLog instanceof ReadOnlyThroughChanges))
throw new ReadOnlyWorkspaceException("Workspace container '" + dataContainer.getName() + "' is read-only.");
Modified: jcr/trunk/pom.xml
===================================================================
--- jcr/trunk/pom.xml 2009-12-16 17:09:08 UTC (rev 1114)
+++ jcr/trunk/pom.xml 2009-12-16 17:21:55 UTC (rev 1115)
@@ -38,9 +38,9 @@
<properties>
<exo.product.name>exo-jcr</exo.product.name>
<exo.product.specification>1.12</exo.product.specification>
- <org.exoplatform.kernel.version>2.2.0-Beta05-SNAPSHOT</org.exoplatform.kernel.version>
- <org.exoplatform.core.version>2.3.0-Beta05-SNAPSHOT</org.exoplatform.core.version>
- <org.exoplatform.ws.version>2.1.0-Beta05-SNAPSHOT</org.exoplatform.ws.version>
+ <org.exoplatform.kernel.version>2.2.0-Beta05</org.exoplatform.kernel.version>
+ <org.exoplatform.core.version>2.3.0-Beta05</org.exoplatform.core.version>
+ <org.exoplatform.ws.version>2.1.0-Beta05</org.exoplatform.ws.version>
</properties>
<scm>
16 years, 7 months
exo-jcr SVN: r1114 - in ws/trunk: exo.ws.commons and 6 other directories.
by do-not-reply@jboss.org
Author: pnedonosko
Date: 2009-12-16 12:09:08 -0500 (Wed, 16 Dec 2009)
New Revision: 1114
Modified:
ws/trunk/exo.ws.commons/pom.xml
ws/trunk/exo.ws.frameworks.json/pom.xml
ws/trunk/exo.ws.frameworks.servlet/pom.xml
ws/trunk/exo.ws.rest.core/pom.xml
ws/trunk/exo.ws.rest.ext/pom.xml
ws/trunk/exo.ws.testframework/pom.xml
ws/trunk/packaging/module/pom.xml
ws/trunk/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: ws/trunk/exo.ws.commons/pom.xml
===================================================================
--- ws/trunk/exo.ws.commons/pom.xml 2009-12-16 17:08:43 UTC (rev 1113)
+++ ws/trunk/exo.ws.commons/pom.xml 2009-12-16 17:09:08 UTC (rev 1114)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.ws</groupId>
<artifactId>ws-parent</artifactId>
- <version>2.1.0-Beta05</version>
+ <version>2.1.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.ws.commons</artifactId>
Modified: ws/trunk/exo.ws.frameworks.json/pom.xml
===================================================================
--- ws/trunk/exo.ws.frameworks.json/pom.xml 2009-12-16 17:08:43 UTC (rev 1113)
+++ ws/trunk/exo.ws.frameworks.json/pom.xml 2009-12-16 17:09:08 UTC (rev 1114)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.ws</groupId>
<artifactId>ws-parent</artifactId>
- <version>2.1.0-Beta05</version>
+ <version>2.1.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.ws.frameworks.json</artifactId>
Modified: ws/trunk/exo.ws.frameworks.servlet/pom.xml
===================================================================
--- ws/trunk/exo.ws.frameworks.servlet/pom.xml 2009-12-16 17:08:43 UTC (rev 1113)
+++ ws/trunk/exo.ws.frameworks.servlet/pom.xml 2009-12-16 17:09:08 UTC (rev 1114)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.ws</groupId>
<artifactId>ws-parent</artifactId>
- <version>2.1.0-Beta05</version>
+ <version>2.1.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.ws.frameworks.servlet</artifactId>
Modified: ws/trunk/exo.ws.rest.core/pom.xml
===================================================================
--- ws/trunk/exo.ws.rest.core/pom.xml 2009-12-16 17:08:43 UTC (rev 1113)
+++ ws/trunk/exo.ws.rest.core/pom.xml 2009-12-16 17:09:08 UTC (rev 1114)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.ws</groupId>
<artifactId>ws-parent</artifactId>
- <version>2.1.0-Beta05</version>
+ <version>2.1.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.ws.rest.core</artifactId>
Modified: ws/trunk/exo.ws.rest.ext/pom.xml
===================================================================
--- ws/trunk/exo.ws.rest.ext/pom.xml 2009-12-16 17:08:43 UTC (rev 1113)
+++ ws/trunk/exo.ws.rest.ext/pom.xml 2009-12-16 17:09:08 UTC (rev 1114)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.ws</groupId>
<artifactId>ws-parent</artifactId>
- <version>2.1.0-Beta05</version>
+ <version>2.1.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.ws.rest.ext</artifactId>
Modified: ws/trunk/exo.ws.testframework/pom.xml
===================================================================
--- ws/trunk/exo.ws.testframework/pom.xml 2009-12-16 17:08:43 UTC (rev 1113)
+++ ws/trunk/exo.ws.testframework/pom.xml 2009-12-16 17:09:08 UTC (rev 1114)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.ws</groupId>
<artifactId>ws-parent</artifactId>
- <version>2.1.0-Beta05</version>
+ <version>2.1.0-Beta06-SNAPSHOT</version>
</parent>
<artifactId>exo.ws.testframework</artifactId>
Modified: ws/trunk/packaging/module/pom.xml
===================================================================
--- ws/trunk/packaging/module/pom.xml 2009-12-16 17:08:43 UTC (rev 1113)
+++ ws/trunk/packaging/module/pom.xml 2009-12-16 17:09:08 UTC (rev 1114)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.exoplatform.ws</groupId>
<artifactId>ws-parent</artifactId>
- <version>2.1.0-Beta05</version>
+ <version>2.1.0-Beta06-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: ws/trunk/pom.xml
===================================================================
--- ws/trunk/pom.xml 2009-12-16 17:08:43 UTC (rev 1113)
+++ ws/trunk/pom.xml 2009-12-16 17:09:08 UTC (rev 1114)
@@ -30,15 +30,15 @@
<groupId>org.exoplatform.ws</groupId>
<artifactId>ws-parent</artifactId>
- <version>2.1.0-Beta05</version>
+ <version>2.1.0-Beta06-SNAPSHOT</version>
<packaging>pom</packaging>
<name>eXo WS</name>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/exo-jcr/ws/tags/2.1.0-Beta05</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/exo-jcr/ws/tags/2.1.0-Beta05</developerConnection>
- <url>http://fisheye.jboss.org/browse/exo-jcr/ws/tags/2.1.0-Beta05</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/exo-jcr/ws/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/exo-jcr/ws/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/exo-jcr/ws/trunk</url>
</scm>
<properties>
16 years, 7 months
exo-jcr SVN: r1113 - ws/tags.
by do-not-reply@jboss.org
Author: pnedonosko
Date: 2009-12-16 12:08:43 -0500 (Wed, 16 Dec 2009)
New Revision: 1113
Added:
ws/tags/2.1.0-Beta05/
Log:
[maven-scm] copy for tag 2.1.0-Beta05
Copied: ws/tags/2.1.0-Beta05 (from rev 1112, ws/trunk)
16 years, 7 months