Platform migration updates: Starting October 25th, 2024, all support issues must be submitted through Hyland Community. The Nuxeo Jira site will enter indefinite read-only mode at 5 p.m. EDT. Cloud deployment services will be temporarily offline, with normal operations resuming Monday, October 28. Read the Hyland Connect blog post for more details.
Some test classes have been moved under nuxeo-core-io test part. But nuxeo-core-io test module is a dependency of nuxeo-core-test (former location) to enforce backward compatibility.
TransactionalFeature has been moved from nuxeo-core-test to nuxeo-runtime-test. With this move, we no longer need ContainerFeature. This feature has been removed, you can get same behavior by annotating your test class with:
Some test classes have been moved under nuxeo-core-io test part. But nuxeo-core-io test module is a dependency of nuxeo-core-test (former location) to enforce backward compatibility.
TransactionalFeature has been moved from nuxeo-core-test to nuxeo-runtime-test . With this move, we no longer need ContainerFeature . This feature has been removed, you can get same behavior by annotating your test class with:
@RunWith(FeaturesRunner.class)
@Features(TransactionalFeature.class)
@TransactionalConfig(autoStart = false )
public class MyTest { ... }
By that, we also introduce two new features: CoreIOFeature and CoreBulkFeature which deploy needed components to use/test the feature.