diff options
author | Benjamin, Max (mb388a) <mb388a@us.att.com> | 2019-04-08 09:31:59 -0400 |
---|---|---|
committer | Benjamin, Max (mb388a) <mb388a@us.att.com> | 2019-04-08 09:32:31 -0400 |
commit | bdaffefc010f006019607a689f553ac4184888ee (patch) | |
tree | 4ed3a4e639d4ac01e6bc302dafac87805f82723c /bpmn/mso-infrastructure-bpmn | |
parent | e757e801c665a1758cf4c976b24df13adda38b2b (diff) |
Fix POM to allow HTTP long polling to work
Fix POM to allow HTTP long polling to work on camunda
Change-Id: I5f9da8b88ad8b14a1ef596f65b95d941c130e794
Issue-ID: SO-1758
Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
Diffstat (limited to 'bpmn/mso-infrastructure-bpmn')
-rw-r--r-- | bpmn/mso-infrastructure-bpmn/pom.xml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/bpmn/mso-infrastructure-bpmn/pom.xml b/bpmn/mso-infrastructure-bpmn/pom.xml index 6f0b1f6fc9..2abea6e31f 100644 --- a/bpmn/mso-infrastructure-bpmn/pom.xml +++ b/bpmn/mso-infrastructure-bpmn/pom.xml @@ -155,18 +155,19 @@ </dependency> <dependency> <groupId>org.camunda.bpm.springboot</groupId> - <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId> - <version>${camunda.springboot.version}</version> - </dependency> - <dependency> - <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId> <version>${camunda.springboot.version}</version> </dependency> <dependency> <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId> - <version>2.3.0</version> + <version>${camunda.springboot.version}</version> + <exclusions> + <exclusion> + <groupId>org.camunda.bpmn</groupId> + <artifactId>camunda-engine-rest-core</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> |