001/*
002 * (C) Copyright 2012 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Antoine Taillefer
016 */
017package org.nuxeo.ecm.platform.routing.test;
018
019import org.nuxeo.ecm.core.test.CoreFeature;
020import org.nuxeo.runtime.test.runner.Deploy;
021import org.nuxeo.runtime.test.runner.Features;
022import org.nuxeo.runtime.test.runner.SimpleFeature;
023
024/**
025 * This feature provides the basic deployments needed to run a test that uses Document Routing.
026 *
027 * @author Antoine Taillefer (ataillefer@nuxeo.com)
028 */
029@Features(CoreFeature.class)
030@Deploy({ "org.nuxeo.ecm.platform.task.core:OSGI-INF/task-core-types-contrib.xml",
031        "org.nuxeo.ecm.platform.task.core:OSGI-INF/TaskService.xml",
032        "org.nuxeo.ecm.platform.task.core:OSGI-INF/task-adapter-contrib.xml",
033        "org.nuxeo.ecm.platform.routing.core:OSGI-INF/document-routing-service.xml",
034        "org.nuxeo.ecm.platform.routing.core:OSGI-INF/document-routing-persister-contrib.xml",
035        "org.nuxeo.ecm.platform.routing.core:OSGI-INF/document-routing-core-types-contrib.xml",
036        "org.nuxeo.ecm.platform.routing.core:OSGI-INF/document-routing-adapter-contrib.xml",
037        "org.nuxeo.ecm.platform.routing.core:OSGI-INF/document-routing-life-cycle-contrib.xml",
038        "org.nuxeo.ecm.platform.routing.core:OSGI-INF/document-routing-engine-service.xml",
039        "org.nuxeo.ecm.platform.routing.core:OSGI-INF/document-routing-operations-contrib.xml",
040        "org.nuxeo.ecm.platform.routing.core:OSGI-INF/document-routing-task-service.xml",
041        "org.nuxeo.ecm.platform.filemanager.core",
042        "org.nuxeo.ecm.core.mimetype:OSGI-INF/nxmimetype-service.xml" })
043public class DocumentRoutingFeature extends SimpleFeature {
044
045}