switchyard-component-common-knowledge
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.switchyard.components</groupId> <artifactId>switchyard-component-common-knowledge</artifactId> <version>2.1.0.Final</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- - Copyright 2016 Red Hat Inc. and/or its affiliates and other contributors. - - Licensed under the Apache License, Version 2.0 (the "License") - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>switchyard-component-common-knowledge</artifactId> <packaging>bundle</packaging> <name>SwitchYard: Knowledge Common Component Library</name> <description>The SwitchYard Knowledge Common Component Library.</description> <url>http://switchyard.org</url> <parent> <groupId>org.switchyard.components</groupId> <artifactId>switchyard-component-common-parent</artifactId> <version>2.1.0.Final</version> <relativePath>../pom.xml</relativePath> </parent> <properties> <switchyard.osgi.export.pkg> org.switchyard.component.common.knowledge.* </switchyard.osgi.export.pkg> <switchyard.osgi.import> org.switchyard.*;${switchyard.osgi.import.switchyard.version}, org.switchyard.common.io;${switchyard.osgi.import.switchyard.version}, org.switchyard.common.io.resource;${switchyard.osgi.import.switchyard.version}, org.hibernate.*;resolution:=optional, * </switchyard.osgi.import> <switchyard.osgi.dynamic> org.jbpm.*, org.drools.*, org.kie.* </switchyard.osgi.dynamic> <switchyard.osgi.require.bundle> org.kie.api </switchyard.osgi.require.bundle> </properties> <dependencies> <!-- internal dependencies --> <dependency> <groupId>org.switchyard</groupId> <artifactId>switchyard-serial</artifactId> </dependency> <dependency> <groupId>org.switchyard.components</groupId> <artifactId>switchyard-component-common</artifactId> </dependency> <!-- external dependencies --> <dependency> <groupId>org.drools</groupId> <artifactId>drools-compiler</artifactId> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-core</artifactId> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-decisiontables</artifactId> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-persistence-jpa</artifactId> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-api</artifactId> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-audit</artifactId> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-bpmn2</artifactId> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-flow</artifactId> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-human-task-core</artifactId> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-human-task-jpa</artifactId> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-human-task-workitems</artifactId> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-persistence-jpa</artifactId> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-runtime-manager</artifactId> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-workitems</artifactId> </dependency> <dependency> <groupId>org.kie</groupId> <artifactId>kie-api</artifactId> </dependency> <dependency> <groupId>org.kie</groupId> <artifactId>kie-ci</artifactId> <!-- we don't want this showing up in the quickstart tests --> <scope>provided</scope> </dependency> <dependency> <groupId>org.kie</groupId> <artifactId>kie-internal</artifactId> </dependency> <dependency> <groupId>org.kie.remote</groupId> <artifactId>kie-remote-client</artifactId> </dependency> <dependency> <groupId>org.mvel</groupId> <artifactId>mvel2</artifactId> </dependency> <!-- OSGi dependencies (build) --> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> <scope>provided</scope> </dependency> </dependencies> </project>