camunda-bpm-camel-blueprint
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.camunda.bpm.extension.camel</groupId> <artifactId>camunda-bpm-camel-blueprint</artifactId> <version>0.8.0</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <name>camunda BPM - Apache Camel Integration (Blueprint)</name> <artifactId>camunda-bpm-camel-blueprint</artifactId> <packaging>bundle</packaging> <parent> <groupId>org.camunda.bpm.extension.camel</groupId> <artifactId>camunda-bpm-camel</artifactId> <version>0.8.0</version> </parent> <properties> <camunda.artifact>org.camunda.bpm.camel.blueprint</camunda.artifact> <camunda.osgi.symbolic.name>${camunda.artifact}</camunda.osgi.symbolic.name> <camunda.osgi.export.pkg>${camunda.artifact}*</camunda.osgi.export.pkg> </properties> <dependencies> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <version>4.2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.camunda.bpm.extension.osgi</groupId> <artifactId>camunda-bpm-osgi</artifactId> <version>1.1.0</version> <exclusions> <exclusion> <artifactId>spring-beans</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.camunda.bpm.extension.camel</groupId> <artifactId>camunda-bpm-camel-common</artifactId> </dependency> <!-- <dependency> <groupId>org.camunda.bpm</groupId> <artifactId>camunda-engine-spring</artifactId> <version>${camunda-bpm.version}</version> <exclusions> <exclusion> <artifactId>spring-beans</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-spring</artifactId> <version>${camel.version}</version> <exclusions> <exclusion> <artifactId>spring-beans</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${sl4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${sl4j.version}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.camunda.bpm.extension.camel</groupId> <artifactId>camunda-bpm-camel-common-tests</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <!-- TODO: Good idea? --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${spring.framework.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>${h2.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-mvel</artifactId> <version>${camel.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.uuid</groupId> <artifactId>java-uuid-generator</artifactId> <version>3.1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert-core</artifactId> <version>${fest.assert.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${sl4j.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.13</version> <configuration> <failIfNoTests>false</failIfNoTests> <trimStackTrace>false</trimStackTrace> <redirectTestOutputToFile>true</redirectTestOutputToFile> <argLine>-Djava.awt.headless=true -Xmx256m</argLine> <includes> <include>org/camunda/bpm/camel/blueprint/SmokeTest.java</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <executions> <!-- This execution makes sure that the manifest is available when the tests are executed --> <execution> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <instructions> <Bundle-Name>${project.name}</Bundle-Name> <Bundle-SymbolicName>${camunda.osgi.symbolic.name}</Bundle-SymbolicName> <Export-Package>${camunda.osgi.export.pkg}.*;-noimport:=true</Export-Package> <Import-Package>*</Import-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>