|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>org.camunda.bpm.consulting.snippet</groupId> |
| 6 | + <artifactId>engine-plugin-external-task-listener</artifactId> |
| 7 | + <version>0.0.1-SNAPSHOT</version> |
| 8 | + |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <name>External Task Listener Plugin for Camunda BPM</name> |
| 12 | + <description>A Process Engine Plugin for [Camunda BPM](http://docs.camunda.org) that allows to listen to newly created External Tasks. [The project has been generated by the Maven archetype 'camunda-archetype-engine-plugin-7.11.1']</description> |
| 13 | + |
| 14 | + <properties> |
| 15 | + <camunda.version>7.11.0</camunda.version> |
| 16 | + <!-- |
| 17 | + Adjust if you want to use Camunda Enterprise Edition (EE): |
| 18 | + <camunda.version>7.11.0-ee</camunda.version> |
| 19 | + Make sure you also switch to EE repository below |
| 20 | + --> |
| 21 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 22 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 23 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 24 | + </properties> |
| 25 | + |
| 26 | + <dependencyManagement> |
| 27 | + <dependencies> |
| 28 | + <dependency> |
| 29 | + <groupId>org.camunda.bpm</groupId> |
| 30 | + <artifactId>camunda-bom</artifactId> |
| 31 | + <version>${camunda.version}</version> |
| 32 | + <scope>import</scope> |
| 33 | + <type>pom</type> |
| 34 | + </dependency> |
| 35 | + </dependencies> |
| 36 | + </dependencyManagement> |
| 37 | + |
| 38 | + <dependencies> |
| 39 | + <dependency> |
| 40 | + <!-- process engine, needs to be provided --> |
| 41 | + <groupId>org.camunda.bpm</groupId> |
| 42 | + <artifactId>camunda-engine</artifactId> |
| 43 | + <scope>provided</scope> |
| 44 | + </dependency> |
| 45 | + |
| 46 | + <dependency> |
| 47 | + <!-- AssertJ Testing Library --> |
| 48 | + <groupId>org.camunda.bpm.extension</groupId> |
| 49 | + <artifactId>camunda-bpm-assert</artifactId> |
| 50 | + <version>1.2</version> |
| 51 | + <scope>test</scope> |
| 52 | + </dependency> |
| 53 | + |
| 54 | + <dependency> |
| 55 | + <groupId>junit</groupId> |
| 56 | + <artifactId>junit</artifactId> |
| 57 | + <version>4.12</version> |
| 58 | + <scope>test</scope> |
| 59 | + </dependency> |
| 60 | + |
| 61 | + <dependency> |
| 62 | + <!-- Needed for InMemoryH2Test --> |
| 63 | + <groupId>com.h2database</groupId> |
| 64 | + <artifactId>h2</artifactId> |
| 65 | + <version>1.4.197</version> |
| 66 | + <scope>test</scope> |
| 67 | + </dependency> |
| 68 | + |
| 69 | + <dependency> |
| 70 | + <!-- Used to generate test coverage reports, see https://github.com/camunda/camunda-consulting/tree/master/snippets/camunda-bpm-process-test-coverage --> |
| 71 | + <groupId>org.camunda.bpm.extension</groupId> |
| 72 | + <artifactId>camunda-bpm-process-test-coverage</artifactId> |
| 73 | + <version>0.3.2</version> |
| 74 | + <scope>test</scope> |
| 75 | + </dependency> |
| 76 | + |
| 77 | + <dependency> |
| 78 | + <!-- use logback as logger --> |
| 79 | + <groupId>ch.qos.logback</groupId> |
| 80 | + <artifactId>logback-classic</artifactId> |
| 81 | + <version>1.1.3</version> |
| 82 | + <scope>test</scope> |
| 83 | + </dependency> |
| 84 | + |
| 85 | + <dependency> |
| 86 | + <groupId>org.slf4j</groupId> |
| 87 | + <!-- apache commons logging => slf4j --> |
| 88 | + <artifactId>jcl-over-slf4j</artifactId> |
| 89 | + <version>1.7.25</version> |
| 90 | + <scope>test</scope> |
| 91 | + </dependency> |
| 92 | + |
| 93 | + <dependency> |
| 94 | + <!-- java util logging => slf4j --> |
| 95 | + <groupId>org.slf4j</groupId> |
| 96 | + <artifactId>jul-to-slf4j</artifactId> |
| 97 | + <version>1.7.25</version> |
| 98 | + <scope>test</scope> |
| 99 | + </dependency> |
| 100 | + |
| 101 | + </dependencies> |
| 102 | + |
| 103 | + <repositories> |
| 104 | + <repository> |
| 105 | + <id>camunda-bpm-nexus</id> |
| 106 | + <name>Camunda Maven Repository</name> |
| 107 | + <url>https://app.camunda.com/nexus/content/groups/public</url> |
| 108 | + </repository> |
| 109 | + <!-- enable this for EE dependencies (requires credentials in ~/.m2/settings.xml) |
| 110 | + <repository> |
| 111 | + <id>camunda-bpm-nexus-ee</id> |
| 112 | + <name>Camunda Enterprise Maven Repository</name> |
| 113 | + <url>https://app.camunda.com/nexus/content/repositories/camunda-bpm-ee</url> |
| 114 | + </repository> |
| 115 | + --> |
| 116 | + </repositories> |
| 117 | + |
| 118 | +</project> |
0 commit comments