Skip to content

Commit

Permalink
chore(config): makes 7.2 ready
Browse files Browse the repository at this point in the history
related to CAM-2989
  • Loading branch information
romansmirnov committed Jan 6, 2015
1 parent 31edff9 commit 2102b72
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 5 deletions.
35 changes: 30 additions & 5 deletions pom.xml
Expand Up @@ -5,15 +5,21 @@
<version>0.1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<properties>
<!-- set the version for camunda BPM here -->
<version.camunda>7.2.0</version.camunda>
<version.junit>4.11</version.junit>
<version.h2>1.3.168</version.h2>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-bom</artifactId>
<type>pom</type>
<scope>import</scope>
<!-- set the version for camunda BPM here -->
<version>7.1.0-Final</version>
<version>${version.camunda}</version>
</dependency>
<dependency>
<groupId>org.camunda.bpm.extension</groupId>
Expand All @@ -24,27 +30,46 @@
</dependencyManagement>

<dependencies>

<!-- engine -->
<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-engine</artifactId>
<scope>provided</scope>
</dependency>

<!-- engine plugins -->
<dependency>
<groupId>org.camunda.bpm.extension</groupId>
<artifactId>camunda-bpm-assert</artifactId>
<scope>provided</scope>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-engine-plugin-connect</artifactId>
</dependency>

<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-engine-plugin-spin</artifactId>
</dependency>

<!-- junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>${version.junit}</version>
</dependency>

<!-- camunda BPM assert -->
<dependency>
<groupId>org.camunda.bpm.extension</groupId>
<artifactId>camunda-bpm-assert</artifactId>
<scope>provided</scope>
</dependency>

<!-- database -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>provided</scope>
<version>${version.h2}</version>
</dependency>

</dependencies>
Expand Down
12 changes: 12 additions & 0 deletions src/test/resources/camunda.cfg.xml
Expand Up @@ -29,10 +29,22 @@

<!--<property name="idGenerator" ref="uuidGenerator" />-->

<!-- engine plugins -->
<property name="processEnginePlugins">
<list>
<ref bean="connectProcessEnginePlugin" />
<ref bean="spinProcessEnginePlugin" />
</list>
</property>

</bean>

<bean id="foxFailedJobCommandFactory" class="org.camunda.bpm.engine.impl.jobexecutor.FoxFailedJobCommandFactory" />

<!--<bean id="uuidGenerator" class="org.camunda.bpm.engine.impl.persistence.StrongUuidGenerator" />-->

<!-- engine plugin beans -->
<bean id="connectProcessEnginePlugin" class="org.camunda.connect.plugin.impl.ConnectProcessEnginePlugin" />
<bean id="spinProcessEnginePlugin" class="org.camunda.spin.plugin.impl.SpinProcessEnginePlugin" />

</beans>

0 comments on commit 2102b72

Please sign in to comment.