-
Notifications
You must be signed in to change notification settings - Fork 39
/
pom.xml
40 lines (35 loc) · 1.57 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<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>
<parent>
<groupId>io.camunda.connector</groupId>
<artifactId>connector-parent</artifactId>
<version>8.7.0-SNAPSHOT</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
<artifactId>connectors-bundle-parent</artifactId>
<packaging>pom</packaging>
<name>connectors</name>
<description>Root POM for Connectors</description>
<inceptionYear>2022</inceptionYear>
<modules>
<module>parent</module>
<module>connector-sdk</module>
<module>element-template-generator/core</module>
<module>element-template-generator/maven-plugin</module>
<module>element-template-generator/http-dsl</module>
<module>element-template-generator/openapi-parser</module>
<module>element-template-generator/postman-collections-parser</module>
<module>element-template-generator/congen-cli</module>
<module>element-template-generator/uniquet</module>
<module>secret-providers/gcp-secret-provider</module>
<module>connector-runtime/connector-runtime-core</module>
<module>connector-runtime/connector-runtime-spring</module>
<module>connector-runtime/spring-boot-starter-camunda-connectors</module>
<module>connector-runtime/connector-runtime-application</module>
<module>connectors</module>
<module>bundle</module>
<module>connectors-e2e-test</module>
</modules>
</project>