exo-jcr SVN: r4137 - jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup.
by do-not-reply@jboss.org
Author: tolusha
Date: 2011-03-20 17:07:56 -0400 (Sun, 20 Mar 2011)
New Revision: 4137
Modified:
jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java
Log:
EXOJCR-1081: fix tests
Modified: jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java
===================================================================
--- jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java 2011-03-20 21:01:40 UTC (rev 4136)
+++ jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java 2011-03-20 21:07:56 UTC (rev 4137)
@@ -471,7 +471,7 @@
Thread.sleep(50);
}
- Thread.sleep(5000);
+ Thread.sleep(30000);
for (BackupChain chain : backup.getCurrentBackups())
if (bch.getBackupId().equals(chain.getBackupId()))
@@ -500,7 +500,7 @@
Thread.sleep(50);
}
- Thread.sleep(6000);
+ Thread.sleep(30000);
boolean isFail = true;
@@ -536,7 +536,7 @@
Thread.sleep(50);
}
- Thread.sleep(32000);
+ Thread.sleep(30000);
for (BackupChain chain : backup.getCurrentBackups())
if (bch.getBackupId().equals(chain.getBackupId()))
@@ -1146,7 +1146,7 @@
Thread.sleep(50);
}
- Thread.sleep(32000);
+ Thread.sleep(30000);
for (RepositoryBackupChain chain : backup.getCurrentRepositoryBackups())
if (bch.getBackupId().equals(chain.getBackupId()))
15 years, 1 month
exo-jcr SVN: r4136 - jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup.
by do-not-reply@jboss.org
Author: tolusha
Date: 2011-03-20 17:01:40 -0400 (Sun, 20 Mar 2011)
New Revision: 4136
Modified:
jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java
Log:
EXOJCR-1081: fix test name
Modified: jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java
===================================================================
--- jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java 2011-03-20 09:20:35 UTC (rev 4135)
+++ jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java 2011-03-20 21:01:40 UTC (rev 4136)
@@ -1406,7 +1406,7 @@
fail("There are no backup files in " + backDir.getAbsolutePath());
}
- public void ExistedWorkspaceRestore() throws Exception
+ public void testExistedWorkspaceRestore() throws Exception
{
SessionImpl ws1Session = (SessionImpl)repositoryService.getRepository("db7").login(credentials, "ws1");
15 years, 1 month
exo-jcr SVN: r4135 - jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup.
by do-not-reply@jboss.org
Author: tolusha
Date: 2011-03-20 05:20:35 -0400 (Sun, 20 Mar 2011)
New Revision: 4135
Modified:
jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java
Log:
EXOJCR-1167: fixed testIncrementalBackupRestore2 and testIncrementalBackupRestoreEXOJCR_737
Modified: jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java
===================================================================
--- jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java 2011-03-19 13:34:19 UTC (rev 4134)
+++ jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java 2011-03-20 09:20:35 UTC (rev 4135)
@@ -28,6 +28,7 @@
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileInputStream;
+import java.io.InputStream;
import java.util.Map;
import javax.jcr.Node;
@@ -313,15 +314,37 @@
assertTrue("Property should exists", ws1backTestRoot.hasProperty("node_1/exo:extraData"));
assertTrue("Node should exists", ws1backTestRoot.hasNode("node_102"));
- compareStream(new FileInputStream(tempf), ws1backTestRoot.getNode("node_5").getProperty("exo:data")
- .getStream());
- compareStream(new FileInputStream(tempf), ws1backTestRoot.getNode("node_1").getProperty("exo:extraData")
- .getStream());
+ InputStream in = ws1backTestRoot.getNode("node_5").getProperty("exo:data").getStream();
+ try
+ {
+ compareStream(new FileInputStream(tempf), in);
+ }
+ finally
+ {
+ in.close();
+ }
+ in = ws1backTestRoot.getNode("node_1").getProperty("exo:extraData").getStream();
+ try
+ {
+ compareStream(new FileInputStream(tempf), in);
+ }
+ finally
+ {
+ in.close();
+ }
+
assertFalse("Property should be removed", ws1backTestRoot.getNode("node_2").hasProperty("exo:data"));
- compareStream(new ByteArrayInputStream("aaa".getBytes()),
- ws1backTestRoot.getNode("node_3").getProperty("exo:data").getStream());
+ in = ws1backTestRoot.getNode("node_3").getProperty("exo:data").getStream();
+ try
+ {
+ compareStream(new ByteArrayInputStream("aaa".getBytes()), in);
+ }
+ finally
+ {
+ in.close();
+ }
assertTrue("Node should be mix:lockable ", ws1backTestRoot.getNode("node_5").isNodeType("mix:lockable"));
assertFalse("Node should be not locked ", ws1backTestRoot.getNode("node_5").isLocked());
@@ -1259,14 +1282,31 @@
Node node_101 = back1.getRootNode().getNode("node_101");
assertNotNull(node_101);
- assertEquals(tempf.length(), node_101.getProperty("exo:data").getStream().available());
- compareStream(new FileInputStream(tempf), node_101.getProperty("exo:data").getStream());
+ InputStream in = node_101.getProperty("exo:data").getStream();
+ try
+ {
+ assertEquals(tempf.length(), in.available());
+ compareStream(new FileInputStream(tempf), in);
+ }
+ finally
+ {
+ in.close();
+ }
+
Node node_102 = back1.getRootNode().getNode("node_102");
assertNotNull(node_102);
- assertEquals(tempf.length(), node_102.getProperty("exo:extraData").getStream().available());
- compareStream(new FileInputStream(tempf), node_102.getProperty("exo:extraData").getStream());
+ in = node_102.getProperty("exo:extraData").getStream();
+ try
+ {
+ assertEquals(tempf.length(), in.available());
+ compareStream(new FileInputStream(tempf), in);
+ }
+ finally
+ {
+ in.close();
+ }
}
catch (Exception e)
{
15 years, 1 month
exo-jcr SVN: r4134 - jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup.
by do-not-reply@jboss.org
Author: tolusha
Date: 2011-03-19 09:34:19 -0400 (Sat, 19 Mar 2011)
New Revision: 4134
Modified:
jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java
Log:
EXOJCR-1081: check failing async restore
Modified: jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java
===================================================================
--- jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java 2011-03-18 14:13:57 UTC (rev 4133)
+++ jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java 2011-03-19 13:34:19 UTC (rev 4134)
@@ -1504,6 +1504,9 @@
Thread.sleep(50);
}
+ assertEquals(backup.getLastRestore(repositoryNameToBackup, ws1.getName()).getStateRestore(),
+ JobWorkspaceRestore.RESTORE_SUCCESSFUL);
+
// check
SessionImpl back1 = null;
try
@@ -1590,6 +1593,9 @@
Thread.sleep(50);
}
+ assertEquals(backup.getLastRestore(repositoryNameToBackup, ws1.getName()).getStateRestore(),
+ JobWorkspaceRestore.RESTORE_SUCCESSFUL);
+
// check
SessionImpl back1 = null;
try
15 years, 1 month
exo-jcr SVN: r4133 - in jcr/trunk/exo.jcr.component.ext/src: main/java/org/exoplatform/services/jcr/ext/backup/impl/fs and 2 other directories.
by do-not-reply@jboss.org
Author: tolusha
Date: 2011-03-18 10:13:57 -0400 (Fri, 18 Mar 2011)
New Revision: 4133
Modified:
jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/AbstractBackupJob.java
jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/AbstractIncrementalBackupJob.java
jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/BackupChainImpl.java
jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/BackupManagerImpl.java
jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/fs/IncrementalBackupJob.java
jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/replication/AbstractWorkspaceDataReceiver.java
jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/replication/WorkspaceDataTransmitter.java
jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java
Log:
EXOJCR-1081:
* get FileCleaner from FileCleanerHolder
* made IncrementalBackupJob work properly in multi-threads
* comment out excluded tests
Modified: jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/AbstractBackupJob.java
===================================================================
--- jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/AbstractBackupJob.java 2011-03-18 08:25:20 UTC (rev 4132)
+++ jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/AbstractBackupJob.java 2011-03-18 14:13:57 UTC (rev 4133)
@@ -41,7 +41,7 @@
public abstract class AbstractBackupJob implements BackupJob
{
- protected int state;
+ protected volatile int state;
protected int id;
Modified: jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/AbstractIncrementalBackupJob.java
===================================================================
--- jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/AbstractIncrementalBackupJob.java 2011-03-18 08:25:20 UTC (rev 4132)
+++ jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/AbstractIncrementalBackupJob.java 2011-03-18 14:13:57 UTC (rev 4133)
@@ -20,14 +20,17 @@
import org.exoplatform.services.jcr.dataflow.ItemStateChangesLog;
import org.exoplatform.services.jcr.dataflow.persistent.ItemsPersistenceListener;
+import org.exoplatform.services.jcr.impl.backup.SuspendException;
import org.exoplatform.services.log.ExoLogger;
import org.exoplatform.services.log.Log;
-import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.URL;
import java.util.ArrayList;
+import java.util.Collections;
import java.util.List;
+import java.util.concurrent.CountDownLatch;
+import java.util.concurrent.atomic.AtomicInteger;
/**
* Created by The eXo Platform SARL .<br/>
@@ -41,11 +44,24 @@
private static Log log = ExoLogger.getLogger("exo.jcr.component.ext.IncrementalBackupJob");
+ /**
+ * Should be synchronized collection.
+ */
protected final List<ItemStateChangesLog> suspendBuffer;
+ /**
+ * The amount of current working threads.
+ */
+ protected AtomicInteger workingThreads = new AtomicInteger();
+
+ /**
+ * Allows to make all threads waiting.
+ */
+ protected CountDownLatch latcher = null;
+
public AbstractIncrementalBackupJob()
{
- this.suspendBuffer = new ArrayList<ItemStateChangesLog>();
+ this.suspendBuffer = Collections.synchronizedList(new ArrayList<ItemStateChangesLog>());
this.id = 1;
notifyListeners();
@@ -57,24 +73,45 @@
}
/**
- * @see org.exoplatform.services.jcr.dataflow.persistent.ItemsPersistenceListener#onSaveItems(org.exoplatform.services.jcr.dataflow.ItemStateChangesLog)
+ * {@inheritDoc}
*/
public void onSaveItems(ItemStateChangesLog chlog)
{
if (state == FINISHED)
+ {
return;
+ }
else if (state == WAITING)
+ {
suspendBuffer.add(chlog);
+ }
else if (state == WORKING)
+ {
try
{
+ // wait while suspended buffer is not clear
+ if (latcher != null && latcher.getCount() != 0)
+ {
+ latcher.await();
+ }
+
+ workingThreads.incrementAndGet();
+
save(chlog);
+
+ workingThreads.decrementAndGet();
}
catch (IOException e)
{
log.error("Incremental backup: Can't save log ", e);
notifyError("Incremental backup: Can't save log ", e);
}
+ catch (InterruptedException e)
+ {
+ log.error("Incremental backup: Can't save log ", e);
+ notifyError("Incremental backup: Can't save log ", e);
+ }
+ }
}
/**
@@ -101,30 +138,50 @@
{
try
{
+ // waiting until all current working threads finished
+ while (workingThreads.get() != 0)
+ {
+ try
+ {
+ Thread.sleep(50);
+ }
+ catch (InterruptedException e)
+ {
+ throw new SuspendException(e);
+ }
+ }
+
+ // nobody write into storage (all threads add changes logs to suspendBuffer), so create new one
url = createStorage();
+
+ // make all threads wait on save, that allow flush suspendBuffer
+ latcher = new CountDownLatch(1);
+ state = WORKING;
+
for (ItemStateChangesLog log : suspendBuffer)
{
save(log);
}
- suspendBuffer.clear();
- state = WORKING;
if (config.getIncrementalJobNumber() != 0 && id == config.getIncrementalJobNumber() + 1)
+ {
state = FINISHED;
-
- notifyListeners();
+ }
}
- catch (FileNotFoundException e)
+ catch (Throwable e)
{
log.error("Incremental backup: resume failed ", e);
notifyError("Incremental backup: resume failed ", e);
}
- catch (IOException e)
+ finally
{
- log.error("Incremental backup: resume failed +", e);
- notifyError("Incremental backup: resume failed ", e);
+ // all threads now continue their work
+ suspendBuffer.clear();
+ latcher.countDown();
}
+ notifyListeners();
+
return url;
}
Modified: jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/BackupChainImpl.java
===================================================================
--- jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/BackupChainImpl.java 2011-03-18 08:25:20 UTC (rev 4132)
+++ jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/BackupChainImpl.java 2011-03-18 14:13:57 UTC (rev 4133)
@@ -313,6 +313,7 @@
{
Thread starter = new Thread()
{
+ @Override
public void run()
{
restartIncrementalBackup();
Modified: jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/BackupManagerImpl.java
===================================================================
--- jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/BackupManagerImpl.java 2011-03-18 08:25:20 UTC (rev 4132)
+++ jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/BackupManagerImpl.java 2011-03-18 14:13:57 UTC (rev 4133)
@@ -30,6 +30,7 @@
import org.exoplatform.services.jcr.config.SimpleParameterEntry;
import org.exoplatform.services.jcr.config.WorkspaceEntry;
import org.exoplatform.services.jcr.config.WorkspaceInitializerEntry;
+import org.exoplatform.services.jcr.core.ManageableRepository;
import org.exoplatform.services.jcr.core.WorkspaceContainerFacade;
import org.exoplatform.services.jcr.ext.backup.BackupChain;
import org.exoplatform.services.jcr.ext.backup.BackupChainLog;
@@ -56,6 +57,7 @@
import org.exoplatform.services.jcr.impl.core.SysViewWorkspaceInitializer;
import org.exoplatform.services.jcr.impl.dataflow.persistent.WorkspacePersistentDataManager;
import org.exoplatform.services.jcr.impl.util.io.FileCleaner;
+import org.exoplatform.services.jcr.impl.util.io.FileCleanerHolder;
import org.exoplatform.services.jcr.util.IdGenerator;
import org.exoplatform.services.log.ExoLogger;
import org.exoplatform.services.log.Log;
@@ -431,8 +433,21 @@
currentRepositoryBackups = Collections.synchronizedSet(new HashSet<RepositoryBackupChain>());
- fileCleaner = new FileCleaner(10000);
+ // get FileCleaner from container's component FileCleanerHolder
+ try
+ {
+ ManageableRepository repository = repoService.getCurrentRepository();
+ String workspaceName = repository.getConfiguration().getSystemWorkspaceName();
+ this.fileCleaner =
+ ((FileCleanerHolder)repository.getWorkspaceContainer(workspaceName).getComponent(FileCleanerHolder.class))
+ .getFileCleaner();
+ }
+ catch (RepositoryException e)
+ {
+ // do nothing. should not happens
+ }
+
messages = new BackupMessagesLog(MESSAGES_MAXSIZE);
scheduler = new BackupScheduler(this, messages);
Modified: jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/fs/IncrementalBackupJob.java
===================================================================
--- jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/fs/IncrementalBackupJob.java 2011-03-18 08:25:20 UTC (rev 4132)
+++ jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/fs/IncrementalBackupJob.java 2011-03-18 14:13:57 UTC (rev 4133)
@@ -29,6 +29,7 @@
import org.exoplatform.services.jcr.ext.backup.impl.PendingChangesLog;
import org.exoplatform.services.jcr.ext.replication.FixupStream;
import org.exoplatform.services.jcr.impl.util.io.FileCleaner;
+import org.exoplatform.services.jcr.impl.util.io.FileCleanerHolder;
import org.exoplatform.services.log.ExoLogger;
import org.exoplatform.services.log.Log;
@@ -58,7 +59,6 @@
public IncrementalBackupJob()
{
- fileCleaner = new FileCleaner(10000);
}
public void init(ManageableRepository repository, String workspaceName, BackupConfig config, Calendar timeStamp)
@@ -67,6 +67,9 @@
this.workspaceName = workspaceName;
this.config = config;
this.timeStamp = timeStamp;
+ this.fileCleaner =
+ ((FileCleanerHolder)repository.getWorkspaceContainer(workspaceName).getComponent(FileCleanerHolder.class))
+ .getFileCleaner();
try
{
@@ -102,6 +105,7 @@
File backupFileData = fnp.getNextFile();
oosFileData = new ObjectOutputStream(PrivilegedFileHelper.fileOutputStream(backupFileData));
+
return new URL("file:" + backupFileData.getAbsoluteFile());
}
Modified: jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/replication/AbstractWorkspaceDataReceiver.java
===================================================================
--- jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/replication/AbstractWorkspaceDataReceiver.java 2011-03-18 08:25:20 UTC (rev 4132)
+++ jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/replication/AbstractWorkspaceDataReceiver.java 2011-03-18 14:13:57 UTC (rev 4133)
@@ -120,6 +120,7 @@
*/
public AbstractWorkspaceDataReceiver() throws RepositoryConfigurationException
{
+ // TODO: need to use FileCleaner from FileCleanerHolder
this.fileCleaner = new FileCleaner(ReplicationService.FILE_CLEANRE_TIMEOUT);
mapPendingBinaryFile = new HashMap<String, PendingBinaryFile>();
Modified: jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/replication/WorkspaceDataTransmitter.java
===================================================================
--- jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/replication/WorkspaceDataTransmitter.java 2011-03-18 08:25:20 UTC (rev 4132)
+++ jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/replication/WorkspaceDataTransmitter.java 2011-03-18 14:13:57 UTC (rev 4133)
@@ -86,6 +86,7 @@
public WorkspaceDataTransmitter(CacheableWorkspaceDataManager dataManager) throws RepositoryConfigurationException
{
dataManager.addItemPersistenceListener(this);
+ // TODO: need to use FileCleaner from FileCleanerHolder
this.fileCleaner = new FileCleaner(ReplicationService.FILE_CLEANRE_TIMEOUT);
}
Modified: jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java
===================================================================
--- jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java 2011-03-18 08:25:20 UTC (rev 4132)
+++ jcr/trunk/exo.jcr.component.ext/src/test/java/org/exoplatform/services/jcr/ext/backup/AbstractBackupUseCasesTest.java 2011-03-18 14:13:57 UTC (rev 4133)
@@ -427,7 +427,7 @@
fail("There are no backup files in " + backDir.getAbsolutePath());
}
- public void _testAutoStopBackupFull() throws Exception
+ public void testAutoStopBackupFull() throws Exception
{
// backup
File backDir = new File("target/backup/" + workspaceNameToBackup + getUUIndex());
@@ -455,7 +455,7 @@
fail("The backup with id '" + chain.getBackupId() + "' should not be active");
}
- public void _testAutoStopBackupIncr() throws Exception
+ public void testAutoStopBackupIncr() throws Exception
{
// backup
File backDir = new File("target/backup/" + workspaceNameToBackup + getUUIndex());
@@ -491,7 +491,7 @@
backup.stopBackup(bch);
}
- public void _testAutoStopBackupIncrRepetion() throws Exception
+ public void testAutoStopBackupIncrRepetion() throws Exception
{
// backup
File backDir = new File("target/backup/" + workspaceNameToBackup + getUUIndex());
@@ -1102,7 +1102,7 @@
fail("There are no backup files in " + backDir.getAbsolutePath());
}
- public void _testAutoStopRepositoryBackupIncrRepetion() throws Exception
+ public void testAutoStopRepositoryBackupIncrRepetion() throws Exception
{
// backup
File backDir = new File("target/backup/" + getUUIndex());
15 years, 1 month
exo-jcr SVN: r4132 - in jcr/trunk: exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/backup/rdbms and 2 other directories.
by do-not-reply@jboss.org
Author: tolusha
Date: 2011-03-18 04:25:20 -0400 (Fri, 18 Mar 2011)
New Revision: 4132
Modified:
jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/backup/JCRRestor.java
jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/backup/rdbms/DirectoryRestor.java
jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/PendingChangesLog.java
jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/fs/IncrementalBackupJob.java
Log:
EXOJCR-1081: * use SpoolFile directly
* fix issue when DirectoryRestore created directories with same name because of System.currentTimeMillis()
Modified: jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/backup/JCRRestor.java
===================================================================
--- jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/backup/JCRRestor.java 2011-03-17 15:47:38 UTC (rev 4131)
+++ jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/backup/JCRRestor.java 2011-03-18 08:25:20 UTC (rev 4132)
@@ -288,7 +288,7 @@
// read stream data
int iStreamCount = in.readInt();
- ArrayList<File> listFiles = new ArrayList<File>();
+ ArrayList<SpoolFile> listFiles = new ArrayList<SpoolFile>();
for (int i = 0; i < iStreamCount; i++)
{
@@ -297,8 +297,7 @@
long fileSize = in.readLong();
// read content file
- File contentFile = getAsFile(in, fileSize);
- listFiles.add(contentFile);
+ listFiles.add(getAsFile(in, fileSize));
}
RestoreChangesLog restoreChangesLog =
@@ -315,12 +314,12 @@
return transactionChangesLog;
}
- private File getAsFile(ObjectInputStream ois, long fileSize) throws IOException
+ private SpoolFile getAsFile(ObjectInputStream ois, long fileSize) throws IOException
{
int bufferSize = 1024 * 8;
byte[] buf = new byte[bufferSize];
- File tempFile = SpoolFile.createTempFile("vdincb" + System.currentTimeMillis(), ".stmp", tempDir);
+ SpoolFile tempFile = SpoolFile.createTempFile("vdincb" + System.currentTimeMillis(), ".stmp", tempDir);
FileOutputStream fos = PrivilegedFileHelper.fileOutputStream(tempFile);
long readBytes = fileSize;
@@ -359,12 +358,12 @@
private List<FixupStream> listFixupStream;
- private List<File> listFile;
+ private List<SpoolFile> listFile;
private FileCleaner fileCleaner;
public RestoreChangesLog(TransactionChangesLog transactionChangesLog, List<FixupStream> listFixupStreams,
- List<File> listFiles, FileCleaner fileCleaner)
+ List<SpoolFile> listFiles, FileCleaner fileCleaner)
{
this.itemDataChangesLog = transactionChangesLog;
this.listFixupStream = listFixupStreams;
@@ -390,7 +389,7 @@
// re-init the value
propertyData.getValues().set(listFixupStream.get(i).getValueDataId(),
- new StreamPersistedValueData(vd.getOrderNumber(), new SpoolFile(listFile.get(i).getAbsolutePath())));
+ new StreamPersistedValueData(vd.getOrderNumber(), listFile.get(i)));
}
for (int i = 0; i < listFile.size(); i++)
Modified: jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/backup/rdbms/DirectoryRestor.java
===================================================================
--- jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/backup/rdbms/DirectoryRestor.java 2011-03-17 15:47:38 UTC (rev 4131)
+++ jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/backup/rdbms/DirectoryRestor.java 2011-03-18 08:25:20 UTC (rev 4132)
@@ -67,6 +67,11 @@
private static final String PREFIX = "fsrestorer";
/**
+ * Guarantee the unique name.
+ */
+ private static volatile int uniqueIndex = 0;
+
+ /**
* Constructor DirectoryRestorer.
*
* @param dataDirs
@@ -99,7 +104,7 @@
{
try
{
- File tmpDir = new File(tempDir, PREFIX + System.currentTimeMillis());
+ File tmpDir = new File(tempDir, PREFIX + (System.currentTimeMillis() + uniqueIndex++));
DirectoryHelper.copyDirectory(dataDir, tmpDir);
tmpDirs.add(tmpDir);
Modified: jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/PendingChangesLog.java
===================================================================
--- jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/PendingChangesLog.java 2011-03-17 15:47:38 UTC (rev 4131)
+++ jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/PendingChangesLog.java 2011-03-18 08:25:20 UTC (rev 4132)
@@ -117,7 +117,7 @@
/**
* The list of Files who are contains in ChangesLog.
*/
- private List<File> listFile;
+ private List<SpoolFile> listFile;
/**
* The identification string for PendingChangesLog.
@@ -155,7 +155,7 @@
listInputStream = new ArrayList<InputStream>();
listFixupStream = new ArrayList<FixupStream>();
containerType = analysisItemDataChangesLog();
- listFile = new ArrayList<File>();
+ listFile = new ArrayList<SpoolFile>();
identifier = IdGenerator.generate();
this.fileCleaner = fileCleaner;
this.tempDir = new File(PrivilegedSystemHelper.getProperty("java.io.tmpdir"));
@@ -182,7 +182,7 @@
listInputStream = new ArrayList<InputStream>();
listFixupStream = new ArrayList<FixupStream>();
listRandomAccessFile = new ArrayList<RandomAccessFile>();
- listFile = new ArrayList<File>();
+ listFile = new ArrayList<SpoolFile>();
this.identifier = identifier;
containerType = type;
this.fileCleaner = fileCleaner;
@@ -217,7 +217,7 @@
* the FileCleaner
*/
public PendingChangesLog(TransactionChangesLog transactionChangesLog, List<FixupStream> listFixupStreams,
- List<File> listFiles, FileCleaner fileCleaner)
+ List<SpoolFile> listFiles, FileCleaner fileCleaner)
{
this.itemDataChangesLog = transactionChangesLog;
this.listFixupStream = listFixupStreams;
@@ -285,7 +285,7 @@
*
* @return List return list of Files
*/
- public List<File> getListFile()
+ public List<SpoolFile> getListFile()
{
return listFile;
}
@@ -468,7 +468,7 @@
{
this.getFixupStreams().add(fs);
- File f = SpoolFile.createTempFile("tempFile" + IdGenerator.generate(), ".tmp", tempDir);
+ SpoolFile f = SpoolFile.createTempFile("tempFile" + IdGenerator.generate(), ".tmp", tempDir);
this.getListFile().add(f);
this.getListRandomAccessFiles().add(PrivilegedFileHelper.randomAccessFile(f, "rw"));
@@ -495,10 +495,8 @@
ValueData vd = (propertyData.getValues().get(listFixupStream.get(i).getValueDataId()));
// re-init the value
- propertyData.getValues().set(
- listFixupStream.get(i).getValueDataId(),
- new StreamPersistedValueData(vd.getOrderNumber(), new SpoolFile(PrivilegedFileHelper
- .getAbsolutePath(listFile.get(i)))));
+ propertyData.getValues().set(listFixupStream.get(i).getValueDataId(),
+ new StreamPersistedValueData(vd.getOrderNumber(), listFile.get(i)));
}
if (listRandomAccessFile != null)
Modified: jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/fs/IncrementalBackupJob.java
===================================================================
--- jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/fs/IncrementalBackupJob.java 2011-03-17 15:47:38 UTC (rev 4131)
+++ jcr/trunk/exo.jcr.component.ext/src/main/java/org/exoplatform/services/jcr/ext/backup/impl/fs/IncrementalBackupJob.java 2011-03-18 08:25:20 UTC (rev 4132)
@@ -167,9 +167,6 @@
fis.close();
fileCleaner.addFile(tempFile);
}
-
- // restore changes log worlds
-
}
else
{
15 years, 1 month
exo-jcr SVN: r4131 - jcr/tags/1.14.0-CR1.
by do-not-reply@jboss.org
Author: tolusha
Date: 2011-03-17 11:47:38 -0400 (Thu, 17 Mar 2011)
New Revision: 4131
Added:
jcr/tags/1.14.0-CR1/readme.txt
Log:
EXOJCR-1212: release notes
Added: jcr/tags/1.14.0-CR1/readme.txt
===================================================================
--- jcr/tags/1.14.0-CR1/readme.txt (rev 0)
+++ jcr/tags/1.14.0-CR1/readme.txt 2011-03-17 15:47:38 UTC (rev 4131)
@@ -0,0 +1,526 @@
+JCR 1.14.0-CR1 release notes
+===========================
+
+eXoPlatform Java Content Repository (JSR-170) implementation and Extension services with clustering support.
+
+Features of 1.14.0-CR1
+- JCR Cache Based on Infinispan
+- Storing missing values into the cache
+- Shared JBC instance between workspaces
+- Possibility to create new repository in runtime from backup in cluster environment
+- Every cluster node could has its own Lucene index and retrieve index from coordinator on starup
+- Re-indexing mechanism for RDBMS
+- Backup/Restore Feature for RDBMS
+- Re-indexing mechanism improved for multi-cores processors
+- Support easy restore with automatically cleaning database and value storage
+- Repository backup support in Backup Console tool
+- Allow to start all the cluster nodes in parallel even during for the first initialization of the JCR
+- Limited support WedDav ACL specification
+- Made the whole JCR stack work properly when the Security Manager is installed
+- Implementation of a RPCService
+- SessionCleaner enabled by default
+- Glassfish Support
+- Export/Import child nodes version history in single xml with parent version history
+- Upgraded 3rd party libraries to higher version
+
+Changes of 1.14.0-CR1
+====================
+
+Bug
+ * [EXOJCR-1116] - RepositoryCreatorService stucks at RepositoryCreationSynchronizer.waitForApproval()
+ * [EXOJCR-1122] - Location header missing in CREATED response for MOVE method
+ * [EXOJCR-1179] - Concurrent eXo cache creation doesn't prevent multiple cache creation
+ * [EXOJCR-1196] - ApplicationRegistry fails with NPE if any of javax.ws.rs.core.Application return null instead of empty collection of JAX-RS components
+ * [EXOJCR-1197] - OrganizationService is started before NodeHierarchyCreator is initialized
+ * [EXOJCR-1199] - Unprotected user code can stop container or org.picocontainer.Startable component
+ * [EXOJCR-1201] - Fix WS packaging JS file for REST dependency
+ * [EXOJCR-1210] - Restore from RDBMS backup fail on InnoDB(MySQL)
+ * [EXOJCR-1213] - Tomcat doesn't stop after gatein.sh stop
+ * [EXOJCR-1217] - Problem with the move function of webdav on https
+ * [EXOJCR-1218] - Problem of renaming folders in WebDav
+ * [EXOJCR-1232] - Unparseable variable in JCR XML configuration file
+ * [EXOJCR-1235] - NFS stale handle
+ * [EXOJCR-1238] - Not correct MBean components registration when PortalContainer contains more then one repository [Part2]
+ * [EXOJCR-1242] - UserImpl toString() wrong return value : only the @organizationId info.
+ * [EXOJCR-1253] - PDFBox dependencies not complete in Core packaging
+
+Enhancement
+ * [EXOJCR-1149] - Load scriptPath resource with help of org.exoplatform.container.configuration.ConfigurationManagerImpl in org.exoplatform.services.database.creator.DBCreator
+ * [EXOJCR-1182] - MimeTypeResolver does not work well with IE7
+ * [EXOJCR-1185] - Reduce the time spent in ParentNodeEvictionActionPolicy
+ * [EXOJCR-1188] - IndexInfos.write() should be called just after replaceIndexes operation done by IndexMerger
+ * [EXOJCR-1231] - Help applications to prevent memory leaks by enabling the SessionCleaner by default
+ * [EXOJCR-1240] - Give a more understandable name to all the existing Containers
+ * [EXOJCR-1243] - JobSchedulerService interface should include: addPeriodJob and addCronJob
+ * [EXOJCR-1254] - Add a mode that throws an Exception when we use a session that is not alive anymore
+
+Feature Request
+ * [EXOJCR-853] - Make it possible to create new repository in runtime from back-up in cluster environment
+ * [EXOJCR-1078] - Implement a Backup/Restore Feature for RDBMS
+ * [EXOJCR-1080] - Improve Lucene Indexing in a cluster environment
+ * [EXOJCR-1089] - RootContainer configuration fails in JBossAS 6
+ * [EXOJCR-1104] - Propose a re-indexing mechanism for RDBMS
+ * [EXOJCR-1142] - Add application/x-jaxrs+groovy mime type to mimetypes.properties for *.grs extension
+ * [EXOJCR-1160] - Glassfish Support
+ * [EXOJCR-1177] - Improve JCR Doc
+ * [EXOJCR-1180] - Allow to avoid using the cache factory under some specific conditions
+ * [EXOJCR-1183] - Implement RequestLifeCycle in ResourceLauncher
+ * [EXOJCR-1184] - Improve the re-indexing mechanism to take advantage of multi-cores
+ * [EXOJCR-1202] - Support disable feature for ISPN cache
+ * [EXOJCR-1207] - Export/Import child nodes version history in single xml with parent version history
+ * [EXOJCR-1220] - Allow to use variables to define any values in the configuration file
+ * [EXOJCR-1246] - StandaloneContainerInitializedListener should stop container on contextDestroyed method
+
+Task
+ * [EXOJCR-828] - JCR replication based on Infinispan
+ * [EXOJCR-1112] - DBCleanerService: Support clean data for single workspace in case of multi-db
+ * [EXOJCR-1157] - Upgrade to the latest maintenance version of Lucene 2.9
+ * [EXOJCR-1158] - Review all the third party libraries
+ * [EXOJCR-1159] - Upgrade all the choosen Third party libraries
+ * [EXOJCR-1175] - Implement PDFDocumentReader.getProperties using PDFBox
+ * [EXOJCR-1176] - Make text message of 405 (Method Not Allowed) status more meaningful
+ * [EXOJCR-1208] - ConstraintViolationException when Importing Version history of a nt:folder node having a nt:file child node. Apply patch.
+ * [EXOJCR-1230] - Update the js files in order to add the missing dependencies
+ * [EXOJCR-1252] - Remove asm dependency from Kernel packaging
+
+Sub-task
+ * [EXOJCR-832] - JCR Indexer based on Infinispan
+ * [EXOJCR-833] - Test the JCR Replication based on infinispan in non cluster mode
+ * [EXOJCR-834] - Test the JCR Replication based on infinispan in cluster mode
+ * [EXOJCR-930] - Testing in cluster environment
+ * [EXOJCR-970] - Ensure the collocation of the data related to the same node when it is possible
+ * [EXOJCR-1045] - Check the TestVersionRestore
+ * [EXOJCR-1046] - Few excluded tests fails because of SecurityManager
+ * [EXOJCR-1047] - Excluded TestSessionDataManager fails with NullPointerExceptions
+ * [EXOJCR-1100] - Documentation and prepare testcases for QA
+ * [EXOJCR-1153] - Support atomic restore
+ * [EXOJCR-1174] - Each cluster node must have it's own index
+ * [EXOJCR-1193] - Index retrieval from coordinator node
+ * [EXOJCR-1214] - Adopt benchmark for quick ISPN <--> JBC switching. Set ISPN as default for benchmark and functional tests
+
+
+Changes of 1.14.0-Beta03
+====================
+
+Bug
+ * [EXOJCR-956] - Cannot use webdav service with a version of jcr:content
+ * [EXOJCR-961] - On restore node the versioning child was removed, but versioning child should be remain unchanged.
+ * [EXOJCR-974] - Simple skin from examples folder doesn't appear at list
+ * [EXOJCR-977] - InitialContextBinder.java doesn't support // instances
+ * [EXOJCR-979] - Lock operations does not checks any permission
+ * [EXOJCR-982] - Problems during testing of jetty: *ERROR* [qtp31131058-61] PropFindResponseEntity:
+ * [EXOJCR-984] - CachingContainer returns unregistered components
+ * [EXOJCR-993] - Daily testing problem: NPE during testing
+ * [EXOJCR-994] - WEBDav view in a webbrowser has hardcoded image links
+ * [EXOJCR-995] - NPE when try to import data via WorkspaceContentImporter
+ * [EXOJCR-1000] - Not correct MBean components registration when PortalContainer contains more then one repository
+ * [EXOJCR-1001] - refresh breaks webdav published files
+ * [EXOJCR-1002] - MethodAccessFilter return not human readable error message and don't set "JAXRS-Body-Provided" header in case rolles not allowed
+ * [EXOJCR-1003] - DeleteCommand in case try remove locked file return don't human readable message
+ * [EXOJCR-1012] - Response on PROPFIND method with 'allprop' element contains wrong formatted and extra data
+ * [EXOJCR-1013] - Response on PROPFIND method with 'allprop' element doesn't contain properties inside <D:include> element
+ * [EXOJCR-1014] - FTP server doesn't show list of workspaces after repository restoring
+ * [EXOJCR-1015] - PROBLEM with Testing Backup Console: restore workspace/backup
+ * [EXOJCR-1030] - Impossible to retrieve the lock on a node even by the root
+ * [EXOJCR-1036] - Empty metadata field not updated when re-uploading documents
+ * [EXOJCR-1037] - If a header delegate is not available then toString method of Object should be used
+ * [EXOJCR-1038] - Some Unit Tests on DB2 related to the CAS plugin fail
+ * [EXOJCR-1040] - eXo JCR doesn't work with Oracle 11g R2 RAC
+ * [EXOJCR-1043] - Index already present error during cluster start
+ * [EXOJCR-1051] - Problems when start backup-console
+ * [EXOJCR-1058] - Problem with uploading files via MacOS client
+ * [EXOJCR-1060] - Indexer doesn't fully release resources on stop
+ * [EXOJCR-1061] - Access Denied in jcr:content with anonim__ permission
+ * [EXOJCR-1062] - WebDAV response is LOCKED after LOCK -> PUT request from the client (but PUT sends locktoken given after LOCK)
+ * [EXOJCR-1065] - Functional testing jcr.core: API Tests failures on Mysql DB
+ * [EXOJCR-1069] - Backup console throws NPE if backup agent isn't deployed on server
+ * [EXOJCR-1073] - TestRPCServiceImpl fails with JGroups 2.10.0.GA
+ * [EXOJCR-1085] - Wrong Content-Type header for files over a certain size
+ * [EXOJCR-1087] - MySQL-UTF8 dialect default collation can be case-insensitive - need case-sensitive set explicitly
+ * [EXOJCR-1092] - Unexpected behaviour of Nautilus while creating/renaming a folder/file via WebDAV
+ * [EXOJCR-1093] - Wrong pasting of a copied folder using Nautilus via WebDAV
+ * [EXOJCR-1095] - Webdav doesn't work on JBoss
+ * [EXOJCR-1098] - The If-Modified-Since property in the HTTP header doesn't exist
+ * [EXOJCR-1107] - RPCService.executeCommandOnCoordinator() doesn't work properly when few instances are on the same workstation
+ * [EXOJCR-1109] - Object BooleanValue must return string representation of boolean value by method getStringValue().
+ * [EXOJCR-1113] - SessionDataManager.listChildPropertiesData(NodeData parent) must not return ValueDatas
+ * [EXOJCR-1115] - Exception error during edit content
+ * [EXOJCR-1117] - Correct misspelling in some methods names: doPriviledged to doPrivileged
+ * [EXOJCR-1118] - IncrementalBackupJob should be thread safe
+ * [EXOJCR-1131] - Node restore result depends on cache eviction
+ * [EXOJCR-1133] - Unit tests fail due to a AccessControlException in cluster mode
+ * [EXOJCR-1139] - Restored version nodes get id from jcr:uuid property instead fetch generated id
+ * [EXOJCR-1140] - Corrupted data if the server is stopped while document is locked
+ * [EXOJCR-1145] - IndexMerger in RO mode is not aware of new indexes
+ * [EXOJCR-1151] - FORM authentication doesn't work with jcrbackup tool and Platform
+ * [EXOJCR-1152] - WADL generation fails if resource class contains some type of sub-resource locators
+ * [EXOJCR-1154] - Repository restore fails using exobackup tool with Component unregister error
+ * [EXOJCR-1155] - Set scope test for junit dependency in exo.ws.rest.ext project
+ * [EXOJCR-1165] - BackupManager restore : Temporary files not deleted
+ * [EXOJCR-1169] - Remove some unnecessary jars
+ * [JCR-1462] - Problems during testing of backup on jcr 1.12.5-GA-SNAPSHOT
+ * [JCR-1483] - When a folder is cut server->client, folder on server doesn't remove.
+ * [JCR-1485] - Unknown error and strange behavior when mary edits a webcontent
+ * [JCR-1508] - Property not found dc:title during testing RandomReadNtFileWithMetadataTest
+
+Documentation
+ * [JCR-1433] - jcr backup/restore
+
+Feature Request
+ * [EXOJCR-747] - Make Backup restore easier
+ * [EXOJCR-887] - Allow to start all the cluster nodes in parallel even during for the first initialization of the JCR
+ * [EXOJCR-971] - Prevent unauthorized access to the methods of RepositoryServiceImpl
+ * [EXOJCR-973] - Add possibility set user role in org.exoplatform.services.rest.tools.ResourceLauncher
+ * [EXOJCR-992] - Allow to use a String as entity for a JSON response
+ * [EXOJCR-997] - Whole Repository backup support in Backup Console tool
+ * [EXOJCR-999] - Limit the total amount of WorkerThreads
+ * [EXOJCR-1011] - Allow to use variables to define the realm, the rest context and the portal container name of a PortalContainerDefinition
+ * [EXOJCR-1020] - Create groovy compiler which able consume JCR node references and produce set of classes as result.
+ * [EXOJCR-1024] - Make possible to overwrite default providers (readers and writers)
+ * [EXOJCR-1029] - The result of the method getReferencesData is never stored into the cache
+ * [EXOJCR-1032] - Limited support WedDav ACL specification
+ * [EXOJCR-1064] - Code review of ACL managment in case of copy/moving nodes
+ * [EXOJCR-1066] - Avoid iterating over a List thanks to its iterator when it is possible
+ * [EXOJCR-1079] - Create plugin for adding exception mapping providers in REST environment
+ * [EXOJCR-1099] - Add support restore existed repository/workspace in backup console
+ * [EXOJCR-1105] - Make it possible to configure dependencies path for Groovy scripts in runtime
+ * [EXOJCR-1143] - Add possibility to get raw JSON data in methods of RESTful services.
+ * [EXOJCR-1150] - DB clean on MySQL should not use iterating over all db
+ * [EXOJCR-1164] - Make possible in JrGroovyCompiler get list of URL on dependency classes
+ * [EXOJCR-1172] - Rest framework must understand http header "x-forwarded-host"
+
+Task
+ * [EXOJCR-946] - Adopt Backup client article
+ * [EXOJCR-949] - Updating eXo JCR version in ra.xml automatically
+ * [EXOJCR-952] - Backport 1.14.x branch commits to trunk
+ * [EXOJCR-955] - BufferedJBossCache performance improving
+ * [EXOJCR-963] - [DOC]Reply on JBC regions to avoid having too many JBC instances
+ * [EXOJCR-965] - Cache doesn't support disable feature
+ * [EXOJCR-972] - Add org.exoplatform.services.rest.ext.method.filter.MethodAccessFilter in container configuration by default
+ * [EXOJCR-981] - Remove timestamp from names of jar-files in application bundles
+ * [EXOJCR-986] - Enable the security manager by default in all the projects
+ * [EXOJCR-988] - RepositoryException: URI is not hierarchical on remove workspace via backup console
+ * [EXOJCR-989] - Refactor JSON framework
+ * [EXOJCR-996] - Merge performance improvements
+ * [EXOJCR-998] - Null values management must be reviewed to be up to date
+ * [EXOJCR-1010] - Create two more constructors for WebDavServiceImpl
+ * [EXOJCR-1018] - Bind slf4j-log4j and log4j dependencies onto the test phase of the various modules of JCR [part #2]
+ * [EXOJCR-1028] - Update the example of configuration for a cluster environment
+ * [EXOJCR-1044] - Check TestQueryUsecases
+ * [EXOJCR-1054] - Apply all the changes made in the ISPN branch to the trunk
+ * [EXOJCR-1055] - Update XPath query ordering chapter in jcr documents
+ * [EXOJCR-1067] - Reduce contention on read in NodeTypeDataHierarchyHolder if possible
+ * [EXOJCR-1070] - Remove dependency on pull-parser artifact as redundant
+ * [EXOJCR-1071] - Move JCR framework commands list configuration to it right place
+ * [EXOJCR-1072] - Publish the reference guide in docbook format
+ * [EXOJCR-1074] - Avoid iterating over a List thanks to its iterator when it is possible [Part #2]
+ * [EXOJCR-1075] - JCR backupset should be fully independent
+ * [EXOJCR-1076] - Backup console binary distribution
+ * [EXOJCR-1083] - Create Group personnal folder should be after Group creation: aplly patch
+ * [EXOJCR-1084] - Exclude jgroups:jgroups:jar:2.6.13.GA:compile dependency from org.jboss.cache:jbosscache-core:jar:3.2.6.GA:compile in JCR parent pom.xml
+ * [EXOJCR-1086] - Remove permission on child isn't used: apply patch
+ * [EXOJCR-1114] - Support more MIME types
+ * [EXOJCR-1119] - Avoid to get an item from the DB if the parent node is new
+ * [EXOJCR-1120] - Changes log traversing is under optimized
+ * [EXOJCR-1129] - Port the documentation about the ISPN implementation of eXo Cache
+ * [EXOJCR-1134] - Check in IndexerSingletonStoreCacheLoader if the children should not be removed
+ * [EXOJCR-1135] - Check in DefaultChangesFilter if we use the right ids in case of a IOException while updating the index of the parentSearchManager
+ * [EXOJCR-1137] - Remove some unnecessary jars
+ * [EXOJCR-1138] - Document databases supported by eXo JCR
+ * [EXOJCR-1148] - Add posibility to configure additional DBCP DataSources parameters in RepositoryCreationService
+ * [EXOJCR-1166] - Document Repository or Workspace initialization from backup
+ * [EXOJCR-1171] - Make possible to use the same GroovyClassLoader in JcrGroovyCompiler and GroovyJaxrsPublisher
+ * [JCR-1515] - Remove jgroup dependency from jcr-services as redundant
+
+Sub-task
+ * [EXOJCR-928] - Study the way how repository configuration can be replicable
+ * [EXOJCR-929] - Implementation
+ * [EXOJCR-939] - Create service to clean DB
+ * [EXOJCR-966] - Write the specification of the RPCService
+ * [EXOJCR-967] - Implement the RPCService
+ * [EXOJCR-1091] - Try to find way to restore value more than 2G
+ * [EXOJCR-1096] - Test on all supported database
+ * [EXOJCR-1097] - Support of restore independent of mulit-db type
+ * [EXOJCR-1101] - Check TestRDBMSBAckupManager
+ * [EXOJCR-1102] - RDBMS backup stress testing
+ * [EXOJCR-1106] - Profiling backup/restore method
+ * [EXOJCR-1110] - Dump data from system table in case of multi-db for non system table
+ * [EXOJCR-1121] - HSQLDB performs commit after tables are locked
+ * [EXOJCR-1127] - Make workspace waiting before starting full backup job
+ * [EXOJCR-1130] - Implement approach using the marker Backupable
+ * [EXOJCR-1146] - DBCleanerService should not relate on AbstractCacheableLockManager
+ * [EXOJCR-1147] - Make backup/restore to be cluster aware
+ * [JCR-1481] - Adding support form authentication in backup console
+
+Changes of 1.14.0-Beta02
+====================
+
+Bug
+ * [EXOJCR-688] - Some entries in the eXo JCR cache are not evicted properly
+ * [EXOJCR-843] - Exceptions after importing file with version history
+ * [EXOJCR-849] - "Permission denied" on client side, when trying to move file(s) to another workspace through FTP
+ * [EXOJCR-856] - Problems while recopying same files via webdav
+ * [EXOJCR-865] - Data corrupt after restore a node which has been imported with version history
+ * [EXOJCR-878] - WebDAV doesn't work with nt:file
+ * [EXOJCR-879] - TestCaching.testNotModifiedSince failed in same cases
+ * [EXOJCR-882] - TestCaching fails on Windows XP SP 2 with Russian locale
+ * [EXOJCR-888] - The problems with restore version node
+ * [EXOJCR-890] - JSON framework don't work with beans created in groovy
+ * [EXOJCR-891] - Snaphosts IDs make the applications build improperly
+ * [EXOJCR-897] - Add registration required node types in single DB confg for test TestImport.
+ * [EXOJCR-908] - Used wrong delimiter during parsing permission value
+ * [EXOJCR-909] - In LDAPService, InitialContext is not safely closed in authenticate method
+ * [EXOJCR-912] - Unable to convert the JCR documentation to pdf
+ * [EXOJCR-916] - Duplicate instantiation of some services
+ * [EXOJCR-921] - Workspace.copy(srcWS, srcAbsPath, destAbsPath) can not copy root child to another workspace root child
+ * [EXOJCR-922] - MapResourceBundle.resolveDependencies() throw java.lang.StackOverflowError
+ * [EXOJCR-924] - Unable to coerce 'Event' into a LONG: java.lang.NumberFormatException: For input string: "Event"
+ * [EXOJCR-933] - Determine property type from nodetype definition in DocumentViewImport for version history.
+ * [EXOJCR-936] - Avoid converting binary value to String in tests
+ * [EXOJCR-954] - Can't get property of a node if it has a child node with the same name with the property
+ * [EXOJCR-964] - User logged-out and cannot login after some inactivity
+
+Feature Request
+ * [EXOJCR-749] - Make eXo JCR rely on Apache Tika
+ * [EXOJCR-771] - Jetty Support
+ * [EXOJCR-776] - Implement the method toString for the main classes of JCR for debugging purpose
+ * [EXOJCR-842] - Allow to disable a given PortalContainer
+ * [EXOJCR-880] - Determine property is multi or single value from nodetype definition in import.
+ * [EXOJCR-886] - Update the document handler to manage MS Office 2007 meta data extraction (docx, ...)
+ * [EXOJCR-934] - Decouple event name from listener name in ListenerService.
+ * [EXOJCR-935] - Add "dav:isreadonly" property management
+ * [EXOJCR-942] - Reply on JBC regions to avoid having too many JBC instances
+ * [EXOJCR-943] - Make JBC implementation of eXo Cache replies on JBC regions to avoid having too many JBC instances
+ * [EXOJCR-950] - Prevent the JobSchedulerServiceImpl to launch jobs that rely on non started services in JBoss AS
+ * [EXOJCR-951] - Make the JobSchedulerServiceImpl support multi portal containers
+
+Task
+ * [EXOJCR-752] - Avoid to load into the memory the full content of a document while extracting the metadata and the text content
+ * [EXOJCR-755] - Study the extensibility of Apache Tika
+ * [EXOJCR-910] - Resynchronize the doc of JCR 1.12 with the trunk
+ * [EXOJCR-917] - core.packaging.module.js error when in deploy phase
+ * [EXOJCR-919] - maxVolatileTime should be checked on checkFlush()
+ * [EXOJCR-927] - Add "application/x-groovy+html" to HTMLDocumentReader and "application/x-jaxrs+groovy" to TextPlainDocumentReader
+ * [EXOJCR-957] - Remove organization nodetypes from projects where it not used
+ * [EXOJCR-962] - [DOC]Make JBC implementation of eXo Cache replies on JBC regions to avoid having too many JBC instances
+
+Sub-task
+ * [EXOJCR-892] - Remove Fake Chapters
+ * [EXOJCR-893] - Apply the structure of PLF
+ * [EXOJCR-940] - Created special method for remove workspace without checking of system workspace
+ * [EXOJCR-941] - Create special method for remove repository without checking of default-repository
+
+
+Changes of 1.14.0-Beta01
+====================
+
+Bug
+ * [EXOJCR-564] - Cannot use the old Hibernate org service in Gate In
+ * [EXOJCR-570] - AddNamespacePlugin registers namespaces after repostiory start
+ * [EXOJCR-638] - get mixin types through the NodeTypeUtil class
+ * [EXOJCR-662] - Processing SQLException may cause infinite loop.
+ * [EXOJCR-667] - Temporary spooled file can be not found on save
+ * [EXOJCR-698] - URL encoding in SEARCH and PROPFIND responces differs.
+ * [EXOJCR-699] - DAILY TESTS are going too long
+ * [EXOJCR-713] - org.exoplatform.services.rest.impl.RequestDispatcher must return readable messages if resource not found or HTTP method is not allowed for resource
+ * [EXOJCR-754] - JDBC Statements left open : Use of Datasources instead of DBCP and C3P0 pools
+ * [EXOJCR-763] - Reordering samename sibling nodes does not update path of child nodes
+ * [EXOJCR-766] - QPath isDescendantOf returns wrong result on samename siblings
+ * [EXOJCR-768] - A session should not be useable after a logout
+ * [EXOJCR-774] - If-Modified-Since doesn't seem to be well managed in the Wevdav Component
+ * [EXOJCR-781] - LockManagerImpl should call InitialContextInitializer.recall
+ * [EXOJCR-784] - DOC : wrong examples in profiles section
+ * [EXOJCR-785] - Parameter maxVolatileTime is not working correctly
+ * [EXOJCR-788] - Inconsistency issue cans occur on default portal container parameters
+ * [EXOJCR-794] - Field "CONFIG" in the table "JCR_CONFIG" is too short on MySql
+ * [EXOJCR-795] - Unexpected behavior of the method PortalContainer.isScopeValid()
+ * [EXOJCR-796] - Data corruption
+ * [EXOJCR-804] - "No such file or directory" exception for value storage when using MySQL or Postgres DB in WCM demo 2.0
+ * [EXOJCR-805] - Can not search user with keyword that contain special character
+ * [EXOJCR-806] - Problems while copying "ftp-ftp"
+ * [EXOJCR-810] - TestRemoveFromValueStorage failed in configuration without ValueStorage
+ * [EXOJCR-812] - InitialContextBinder.bind should be thread-safe
+ * [EXOJCR-813] - ItemImpl.getParent method must return session pooled parent
+ * [EXOJCR-817] - max-buffer-size from configuration should be use to TransientValueData in import (docview and sysview)
+ * [EXOJCR-819] - HTTPBackupAgent doesn't provide information about last successfully restored repositories if restore was launched in synchronous mode
+ * [EXOJCR-825] - Problems with functional testing - multi, value-storage is turned off
+ * [EXOJCR-835] - TestMultiDbJDBCConnection and TestSingleDbJDBCConnection must drop also JCR_xCONTAINER table on tearDown
+ * [EXOJCR-837] - FUNCTIONAL testing jcr.ext - TestBackupManager in error
+ * [EXOJCR-840] - java.util.ConcurrentModificationException on org.exoplatform.services.jcr.ext.hierarchy.impl.NewUserListener.processUserStructure
+ * [EXOJCR-844] - JCR inside application server is not started due to missing component
+ * [EXOJCR-857] - Exception during PROPFIND request if some property content "%" and after not hex chracters
+ * [EXOJCR-859] - Random failed tests during building jcr
+
+Feature Request
+ * [EXOJCR-156] - Disable deleting of the workspace which is set as system
+ * [EXOJCR-157] - Disable deleting of the repository which is set as default
+ * [EXOJCR-190] - Support returning directly Collection<T> for MediaType.APPLICATION_JSON
+ * [EXOJCR-230] - Refactore and move in main part of exo.ws.rest.core project class AbstractResourceTest
+ * [EXOJCR-311] - Make broadcasting of events of ListenerService asynchronous
+ * [EXOJCR-420] - Check if the ItemReferencePool of the SessionDataManager can be implemented with WeakValueHashMap instead of a WeakHashMap
+ * [EXOJCR-482] - Be able to load a class stored in another groovy file
+ * [EXOJCR-498] - Provide more details when a JCR query is invalid
+ * [EXOJCR-517] - filter to authenticate a signed request from gadgets
+ * [EXOJCR-609] - Allow to keep missing values into the JCR Cache
+ * [EXOJCR-626] - H2 Database support
+ * [EXOJCR-634] - Upload of a file with special characters like " ' " in filename is not supported by the FTPservice
+ * [EXOJCR-635] - Avoid unneccesary checks in persistence
+ * [EXOJCR-745] - Allow cascading imports in configuration files
+ * [EXOJCR-750] - JCR path management improvement
+ * [EXOJCR-782] - No longer force extension developers to redefine the whole dependencies list
+ * [EXOJCR-786] - The method that registers plugins should be overloadable
+ * [EXOJCR-793] - Make possible to configure permissions for Groovy REST services when the SecurityManager is instaled
+ * [EXOJCR-797] - Unable see error message from ProxyService if remote server does not provide Content-Type header.
+ * [EXOJCR-822] - Make implementation of MethodInvokerFilter which can disable access to methods of RESTful services to any users except services deployer
+ * [EXOJCR-823] - Make possible to provide optional attributes for RESTful resources
+ * [EXOJCR-824] - Make expiring mechanism for temporary "under development" services
+ * [EXOJCR-864] - Add method GroovyScript2RestLoader.load with the same signature as it is in 1.12.x
+
+Patch
+ * [EXOJCR-772] - SharedStateLoginModule does swallow an exception during login phase
+
+Task
+ * [EXOJCR-392] - Siblings reordering may update not all the child-items in cache
+ * [EXOJCR-542] - Improve error message concerning a missing "Query Manager Factory"
+ * [EXOJCR-618] - BufferedJBossCache Optimisation: research how to use internal ChangeList as non-persistent cache inside opened transaction
+ * [EXOJCR-689] - Standartize eXo JCR docnmentation projects description.
+ * [EXOJCR-691] - Fix your missing dependencies
+ * [EXOJCR-746] - Remove CommunicationService
+ * [EXOJCR-756] - Make JCR core work properly when the Security Manager is installed
+ * [EXOJCR-764] - Fix the security issue about the JCR System Session
+ * [EXOJCR-767] - Prevent unauthorized access to the method ConversationState.setCurrent(ConverstionState state)
+ * [EXOJCR-770] - Prevent modification of user's identity without required permissions
+ * [EXOJCR-775] - Rework RESTRegistryService for using current repository only. Rewove repository name from PathParam.
+ * [EXOJCR-777] - Prevent modifications of ConversationState's attributes without required permissions
+ * [EXOJCR-778] - Protect the main methods of a repository since they are critical
+ * [EXOJCR-779] - Provide current ConversationState for anonymous user also.
+ * [EXOJCR-780] - Move org.exoplatform.services.jcr.access.SystemIdentity class from exo.jcr.core exo.kernel or exo.core
+ * [EXOJCR-783] - Use cached table for HSLQLDB tables
+ * [EXOJCR-791] - SwapFile and SpoolFile tests
+ * [EXOJCR-807] - Port the article Groovy Scripts as REST Services
+ * [EXOJCR-808] - For Sybase DB "check-sns-new-connection" should be set to false by default
+ * [EXOJCR-809] - OrganizationService's tests should not be excluded
+ * [EXOJCR-815] - Document how to use AS Managed DataSource
+ * [EXOJCR-845] - Remove exo:audit* nodetypes from configuration.
+
+Sub-task
+ * [EXOJCR-627] - Investigate use of in-memory databases for in-memory JCR
+ * [EXOJCR-742] - Port Workspace Data Container articles into docbook
+ * [EXOJCR-757] - Training on Java Security
+ * [EXOJCR-758] - Implement it
+ * [EXOJCR-759] - Test it
+ * [EXOJCR-790] - OS depended paths in policy files for tests.
+ * [EXOJCR-798] - Cluster testing security support
+ * [EXOJCR-799] - MySQL & PostgreSQL tesing problem with security enabled
+ * [EXOJCR-851] - Searching users with special characters in name does not work properly
+ * [EXOJCR-862] - Check Property.getStream() method
+ * [EXOJCR-863] - Check VersionHistory.removeVersionLabel() & VersionHistory.addVersionLabel()
+
+
+Features of eXoJCR 1.12 comparing to 1.11
+=========================================
+
+- Repository clustering based on JBossCache and JBoss Transactions.
+- Lazy-load option for child nodes and properties read, improved items dataflow for read/write operations
+- Alternative data container optimized for read operations (consuming less database queries)
+- Database dialect can be autodetected (if not pointed in the configuration)
+- Support for Values large of 2GiB
+- Portal container configuration improvements (default definitions, link and externaly loaded parameters)
+- Concurrency improvements for Session registry and Values stroage
+- Concurrency improvements for XA transactions support (Repository login and logout faster now)
+- Improved serach based on Lucene 2.4
+- Support of MySQL/InnoDB database for multi-language content
+- Standalone container can use configuration stored in JBossAS server configuration directory by default
+- WebDAV server update-policy can be configured to different versioning behaviour
+- Lot of WebDAV server bugfixes
+- HTTP (RESTful) Backup agent with concole client
+- HTTP (RESTful) Repository management service
+- Support of Java6 and Java5 runtime and development environment
+
+Since version of 1.12 eXoJCR available under LGPL license (version 2.1).
+
+eXoJCR 1.12 tested in on the databases:
+ MySQL 5.1 MYSQL Connector/J 5.1.8
+ Oracle DB 10g (10.2.0.1) Oracle 10g (10.2.0.1)
+ PostgresSQL 8.3.7 JDBC4 Driver, Version 8.3-605
+ DB2 9,7 IBM Data Server Driver for JDBC and SQLJ (JCC Driver) Version: 9.1 (fixpack 3a)
+ MS SQL Server 2005 SP3 JDBC Driver 2.0
+ MS SQL Server 2008 SP1 JDBC Driver 2.0
+ Sybase 15.0.2 JConnect v6.0.5 (Build 26564 / 11 Jun 2009)
+
+
+Release includes:
+* eXo Kernel 2.3.0-CR1
+* eXo Core 2.4.0-CR1
+* eXo WS 2.2.0-CR1
+* eXo JCR 1.14.0-CR1
+
+Find all 1.14 task on JIRA:
+https://jira.jboss.org/jira/browse/EXOJCR
+
+1.14.0-CR1 tasks:
+https://issues.jboss.org/browse/EXOJCR/fixforversion/12315936
+
+JCR Samples
+===========
+
+1. Start Up (Tomcat)
+ Tomcat 6 bundled can be started by executing the following commands:
+
+ $CATALINA_HOME\bin\eXo.bat run (Windows)
+
+ $CATALINA_HOME/bin/eXo.sh run (Unix)
+
+2. After startup, the sample applications will be available by visiting:
+
+ http://localhost:8080/browser - Simple JCR browser
+ Browse the JCR repository that was started with Tomcat
+ http://localhost:8080/fckeditor - FCK editor sample
+ Edits the sample node using FCKEditor and browse it JCR browser
+ http://localhost:8080/rest/jcr/repository/production - WebDAV service,
+ Open in Microsoft Explorer, File-Open-OpenAsWebFolder with url http://localhost:8080/rest/jcr/repository/production
+ Add/read/remove files there and browse it in the JCR browser or FTP.
+ User name/password: root/exo
+ ftp://localhost:2121 - FTP server
+ Open the repository in FTP client and browse the JCR repository started with Tomcat as FTP content,
+ add/read/remove files there and browse it in the JCR browser or WebDAV.
+
+EAR deploy
+==========
+
+eXo JCR was tested under JBoss-5.1.0.GA application server
+
+JBoss-5.1.0.GA
+
+ 1. Configuration
+
+ * Copy jcr.ear into $jboss_home/server/default/deploy
+ * Create $jboss_home/server/default/conf/exo-conf folder if it doesn't exist.
+ * Put exo-configuration.xml into $jboss_home/server/default/conf/exo-conf/exo-configuration.xml
+ * Configure JAAS by inserting XML fragment shown below into $jboss_home/server/default/conf/login-config.xml
+
+---------
+<application-policy name="exo-domain">
+ <authentication>
+ <login-module code="org.exoplatform.services.security.j2ee.JbossLoginModule" flag="required"></login-module>
+ </authentication>
+ </application-policy>
+---------
+
+ 2. Start Up
+
+ Execute
+ * bin/run.bat on Windows
+ or
+ * bin/run.sh on Unix
+
+Resources
+=========
+
+ Company site http://www.exoplatform.com
+ Documentation wiki http://wiki.exoplatform.org
+ Community JIRA https://jira.jboss.org/jira/browse/EXOJCR, http://jira.exoplatform.org
+ Comminity site http://www.exoplatform.org
+ Community forum http://www.exoplatform.com/portal/public/en/forum
+ JavaDoc site http://docs.exoplatform.org
+
\ No newline at end of file
15 years, 1 month
exo-jcr SVN: r4130 - jcr/trunk.
by do-not-reply@jboss.org
Author: tolusha
Date: 2011-03-17 11:11:41 -0400 (Thu, 17 Mar 2011)
New Revision: 4130
Modified:
jcr/trunk/pom.xml
Log:
EXOJCR-1212: change dependency to trunk
Modified: jcr/trunk/pom.xml
===================================================================
--- jcr/trunk/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
+++ jcr/trunk/pom.xml 2011-03-17 15:11:41 UTC (rev 4130)
@@ -42,9 +42,9 @@
<properties>
<exo.product.name>exo-jcr</exo.product.name>
<exo.product.specification>1.14</exo.product.specification>
- <org.exoplatform.kernel.version>2.3.0-CR1</org.exoplatform.kernel.version>
- <org.exoplatform.core.version>2.4.0-CR1</org.exoplatform.core.version>
- <org.exoplatform.ws.version>2.2.0-CR1</org.exoplatform.ws.version>
+ <org.exoplatform.kernel.version>2.3.0-CR2-SNAPSHOT</org.exoplatform.kernel.version>
+ <org.exoplatform.core.version>2.4.0-CR2-SNAPSHOT</org.exoplatform.core.version>
+ <org.exoplatform.ws.version>2.2.0-CR2-SNAPSHOT</org.exoplatform.ws.version>
<org.exoplatform.doc-style.version>1</org.exoplatform.doc-style.version>
</properties>
15 years, 1 month
exo-jcr SVN: r4129 - in jcr/trunk: applications and 25 other directories.
by do-not-reply@jboss.org
Author: tolusha
Date: 2011-03-17 10:49:30 -0400 (Thu, 17 Mar 2011)
New Revision: 4129
Modified:
jcr/trunk/applications/exo.jcr.applications.backupconsole.dist/pom.xml
jcr/trunk/applications/exo.jcr.applications.backupconsole/pom.xml
jcr/trunk/applications/exo.jcr.applications.browser/pom.xml
jcr/trunk/applications/exo.jcr.applications.config/pom.xml
jcr/trunk/applications/exo.jcr.applications.fckeditor/pom.xml
jcr/trunk/applications/exo.jcr.applications.jboss/pom.xml
jcr/trunk/applications/exo.jcr.applications.jetty/pom.xml
jcr/trunk/applications/exo.jcr.applications.jonas/pom.xml
jcr/trunk/applications/exo.jcr.applications.rest/pom.xml
jcr/trunk/applications/exo.jcr.applications.tomcat/pom.xml
jcr/trunk/applications/exo.jcr.cluster.testclient/pom.xml
jcr/trunk/applications/exo.jcr.ear/pom.xml
jcr/trunk/applications/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.statistics/pom.xml
jcr/trunk/exo.jcr.component.webdav/pom.xml
jcr/trunk/exo.jcr.connectors.localadapter/pom.xml
jcr/trunk/exo.jcr.docs/exo.jcr.docs.developer/en/pom.xml
jcr/trunk/exo.jcr.docs/exo.jcr.docs.developer/pom.xml
jcr/trunk/exo.jcr.docs/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.backupconsole/pom.xml
===================================================================
--- jcr/trunk/applications/exo.jcr.applications.backupconsole/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/applications/exo.jcr.applications.backupconsole/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-applications-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.backupconsole</artifactId>
<name>eXo JCR :: Applications :: Backup Console</name>
Modified: jcr/trunk/applications/exo.jcr.applications.backupconsole.dist/pom.xml
===================================================================
--- jcr/trunk/applications/exo.jcr.applications.backupconsole.dist/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/applications/exo.jcr.applications.backupconsole.dist/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-applications-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.backupconsole.dist</artifactId>
<name>eXo JCR :: Applications :: Backup Console Binary Distribution</name>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.applications.backupconsole</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.jcr</groupId>
Modified: jcr/trunk/applications/exo.jcr.applications.browser/pom.xml
===================================================================
--- jcr/trunk/applications/exo.jcr.applications.browser/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/applications/exo.jcr.applications.browser/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-applications-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.browser</artifactId>
<packaging>war</packaging>
Modified: jcr/trunk/applications/exo.jcr.applications.config/pom.xml
===================================================================
--- jcr/trunk/applications/exo.jcr.applications.config/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/applications/exo.jcr.applications.config/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-applications-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.config</artifactId>
<packaging>pom</packaging>
Modified: jcr/trunk/applications/exo.jcr.applications.fckeditor/pom.xml
===================================================================
--- jcr/trunk/applications/exo.jcr.applications.fckeditor/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/applications/exo.jcr.applications.fckeditor/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-applications-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.fckeditor</artifactId>
<packaging>war</packaging>
Modified: jcr/trunk/applications/exo.jcr.applications.jboss/pom.xml
===================================================================
--- jcr/trunk/applications/exo.jcr.applications.jboss/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/applications/exo.jcr.applications.jboss/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.applications.config</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -40,7 +40,7 @@
<dependency>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.ear</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
<type>ear</type>
<scope>runtime</scope>
</dependency>
Modified: jcr/trunk/applications/exo.jcr.applications.jetty/pom.xml
===================================================================
--- jcr/trunk/applications/exo.jcr.applications.jetty/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/applications/exo.jcr.applications.jetty/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.applications.config</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
<relativePath>exo.jcr.applications.config</relativePath>
</parent>
Modified: jcr/trunk/applications/exo.jcr.applications.jonas/pom.xml
===================================================================
--- jcr/trunk/applications/exo.jcr.applications.jonas/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/applications/exo.jcr.applications.jonas/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.applications.config</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -40,7 +40,7 @@
<dependency>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.ear</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
<type>ear</type>
<scope>runtime</scope>
</dependency>
Modified: jcr/trunk/applications/exo.jcr.applications.rest/pom.xml
===================================================================
--- jcr/trunk/applications/exo.jcr.applications.rest/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/applications/exo.jcr.applications.rest/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-applications-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.applications.rest</artifactId>
<packaging>war</packaging>
Modified: jcr/trunk/applications/exo.jcr.applications.tomcat/pom.xml
===================================================================
--- jcr/trunk/applications/exo.jcr.applications.tomcat/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/applications/exo.jcr.applications.tomcat/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.applications.config</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
<relativePath>exo.jcr.applications.config</relativePath>
</parent>
Modified: jcr/trunk/applications/exo.jcr.cluster.testclient/pom.xml
===================================================================
--- jcr/trunk/applications/exo.jcr.cluster.testclient/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/applications/exo.jcr.cluster.testclient/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-applications-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.cluster.testclient</artifactId>
<name>eXo JCR :: Cluster :: Test Client</name>
Modified: jcr/trunk/applications/exo.jcr.ear/pom.xml
===================================================================
--- jcr/trunk/applications/exo.jcr.ear/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/applications/exo.jcr.ear/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-applications-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.ear</artifactId>
<packaging>ear</packaging>
Modified: jcr/trunk/applications/pom.xml
===================================================================
--- jcr/trunk/applications/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/applications/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -22,12 +22,12 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jcr-applications-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
<name>eXo JCR :: Applications :: Reactor</name>
<packaging>pom</packaging>
Modified: jcr/trunk/exo.jcr.component.core/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.core/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/exo.jcr.component.core/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.component.core</artifactId>
<name>eXo JCR :: Component :: Core Service</name>
Modified: jcr/trunk/exo.jcr.component.ext/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.ext/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/exo.jcr.component.ext/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.component.ext</artifactId>
<name>eXo JCR :: Component :: Extension Service</name>
Modified: jcr/trunk/exo.jcr.component.ftp/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.ftp/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/exo.jcr.component.ftp/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.component.ftp</artifactId>
<name>eXo JCR :: Component :: FTP Service</name>
Modified: jcr/trunk/exo.jcr.component.statistics/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.statistics/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/exo.jcr.component.statistics/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.component.statistics</artifactId>
<name>eXo JCR :: Component :: Statistics Provider</name>
Modified: jcr/trunk/exo.jcr.component.webdav/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.webdav/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/exo.jcr.component.webdav/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.component.webdav</artifactId>
<name>eXo JCR :: Component :: Webdav Service</name>
Modified: jcr/trunk/exo.jcr.connectors.localadapter/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.connectors.localadapter/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/exo.jcr.connectors.localadapter/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.connectors.localadapter</artifactId>
<packaging>rar</packaging>
Modified: jcr/trunk/exo.jcr.docs/exo.jcr.docs.developer/en/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.docs/exo.jcr.docs.developer/en/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/exo.jcr.docs/exo.jcr.docs.developer/en/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.docs.developer</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: jcr/trunk/exo.jcr.docs/exo.jcr.docs.developer/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.docs/exo.jcr.docs.developer/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/exo.jcr.docs/exo.jcr.docs.developer/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>exo.jcr.docs</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: jcr/trunk/exo.jcr.docs/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.docs/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/exo.jcr.docs/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: jcr/trunk/exo.jcr.framework.command/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.framework.command/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/exo.jcr.framework.command/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.framework.command</artifactId>
<name>eXo JCR :: Framework :: Command</name>
Modified: jcr/trunk/exo.jcr.framework.ftpclient/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.framework.ftpclient/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/exo.jcr.framework.ftpclient/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.framework.ftpclient</artifactId>
<name>eXo JCR :: Framework :: FTP Client</name>
Modified: jcr/trunk/exo.jcr.framework.web/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.framework.web/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/exo.jcr.framework.web/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>exo.jcr.framework.web</artifactId>
<name>eXo JCR :: Framework :: Web</name>
Modified: jcr/trunk/packaging/module/pom.xml
===================================================================
--- jcr/trunk/packaging/module/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/packaging/module/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
</parent>
<artifactId>jcr.packaging.module</artifactId>
<packaging>pom</packaging>
Modified: jcr/trunk/pom.xml
===================================================================
--- jcr/trunk/pom.xml 2011-03-17 14:48:57 UTC (rev 4128)
+++ jcr/trunk/pom.xml 2011-03-17 14:49:30 UTC (rev 4129)
@@ -29,14 +29,14 @@
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
- <version>1.14.0-CR1</version>
+ <version>1.14.0-CR2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>eXo JCR</name>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/exo-jcr/jcr/tags/1.14.0-CR1</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/exo-jcr/jcr/tags/1.14.0-CR1</developerConnection>
- <url>http://fisheye.jboss.org/browse/exo-jcr/jcr/tags/1.14.0-CR1</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>http://fisheye.jboss.org/browse/exo-jcr/jcr/trunk</url>
</scm>
<properties>
15 years, 1 month
exo-jcr SVN: r4128 - jcr/tags.
by do-not-reply@jboss.org
Author: tolusha
Date: 2011-03-17 10:48:57 -0400 (Thu, 17 Mar 2011)
New Revision: 4128
Added:
jcr/tags/1.14.0-CR1/
Log:
[maven-scm] copy for tag 1.14.0-CR1
15 years, 1 month