Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions examples/operate-example-load-process-instance/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
<version>8.5.19-SNAPSHOT</version>
</parent>

<artifactId>operate-example-load-process-instance</artifactId>
<artifactId>operate-client-example-load-process-instance</artifactId>
<name>Camunda Operate Client Example: Load process instance</name>

<dependencies>
<dependency>
Expand Down Expand Up @@ -76,4 +77,4 @@
</pluginManagement>
</build>

</project>
</project>
3 changes: 2 additions & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@

<artifactId>operate-examples-parent</artifactId>
<packaging>pom</packaging>
<name>Camunda Operate Client Examples Parent</name>
<modules>
<module>operate-example-load-process-instance</module>
<module>readme-snippets</module>
</modules>

</project>
</project>
5 changes: 3 additions & 2 deletions examples/readme-snippets/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
<version>8.5.19-SNAPSHOT</version>
</parent>

<artifactId>readme-snippets</artifactId>
<artifactId>operate-client-readme-snippets</artifactId>
<name>Camunda Operate Client Readme Snippets</name>

<dependencies>
<dependency>
Expand All @@ -34,4 +35,4 @@
</dependency>
</dependencies>

</project>
</project>
5 changes: 2 additions & 3 deletions extension/java-client-operate-compat/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</parent>

<artifactId>java-client-operate-compat</artifactId>

<name>Camunda Operate Client Compat</name>
<dependencies>
<dependency>
<groupId>io.camunda.spring</groupId>
Expand All @@ -28,5 +28,4 @@
</dependency>
</dependencies>


</project>
</project>
120 changes: 59 additions & 61 deletions extension/java-client-operate/pom.xml
Original file line number Diff line number Diff line change
@@ -1,68 +1,66 @@
<?xml version="1.0" encoding="UTF-8"?>
<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.spring</groupId>
<artifactId>operate-client-parent</artifactId>
<version>8.5.19-SNAPSHOT</version>
</parent>

<artifactId>java-client-operate</artifactId>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.camunda.spring</groupId>
<artifactId>operate-client-parent</artifactId>
<version>8.5.19-SNAPSHOT</version>
</parent>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-bpmn-model</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.core5</groupId>
<artifactId>httpcore5</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
<groupId>io.camunda</groupId>
<artifactId>spring-boot-starter-camunda-sdk</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<artifactId>java-client-operate</artifactId>
<name>Camunda Operate Client</name>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-bpmn-model</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.core5</groupId>
<artifactId>httpcore5</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<pluginManagement>
Expand Down
2 changes: 2 additions & 0 deletions extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@

<artifactId>operate-client-parent</artifactId>
<packaging>pom</packaging>
<name>Camunda Operate Client Parent</name>

<modules>
<module>java-client-operate</module>
<module>spring-boot-starter-camunda-operate</module>
<module>java-client-operate-compat</module>
</modules>
</project>
9 changes: 4 additions & 5 deletions extension/spring-boot-starter-camunda-operate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
</parent>

<artifactId>spring-boot-starter-camunda-operate</artifactId>
<name>Spring Boot Starter Camunda Operate Client</name>

<dependencies>
<dependency>
Expand Down Expand Up @@ -92,10 +93,8 @@
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<ignoredUnusedDeclaredDependencies>
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter
</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter-test
</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter-test</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>io.camunda:spring-boot-starter-camunda-sdk</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-configuration-processor</ignoredUnusedDeclaredDependency>
</ignoredUnusedDeclaredDependencies>
Expand All @@ -105,4 +104,4 @@
</pluginManagement>
</build>

</project>
</project>
72 changes: 35 additions & 37 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>

Expand All @@ -10,6 +11,25 @@
<artifactId>operate-client-root</artifactId>
<version>8.5.19-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Camunda Operate Client Root</name>

<licenses>
<license>
<name>Apache License</name>
</license>
</licenses>

<modules>
<module>extension</module>
<module>examples</module>
</modules>

<scm>
<connection>scm:git:[email protected]:camunda-community-hub/camunda-operate-client-java.git</connection>
<developerConnection>scm:git:[email protected]:camunda-community-hub/camunda-operate-client-java.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/camunda-community-hub/camunda-operate-client-java</url>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -43,34 +63,28 @@
<plugin.version.maven-source-plugin>3.3.1</plugin.version.maven-source-plugin>
</properties>

<modules>
<module>extension</module>
<module>examples</module>
<module>extension/java-client-operate-compat</module>
</modules>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<scope>import</scope>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-bom</artifactId>
<version>${zeebe.version}</version>
<scope>import</scope>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-bom</artifactId>
<version>3.25.8</version>
<scope>import</scope>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
Expand Down Expand Up @@ -264,24 +278,21 @@
<artifactId>spotless-maven-plugin</artifactId>
<version>${plugin.version.spotless-maven-plugin}</version>
<configuration>
<formats>
<format>
<includes>
<include>*.md</include>
<include>.gitignore</include>
</includes>
<trimTrailingWhitespace />
<endWithNewline />
<indent>
<spaces>true</spaces>
<spacesPerTab>2</spacesPerTab>
</indent>
</format>
</formats>
<java>
<googleJavaFormat />
</java>
<pom />
<pom>
<sortPom>
<nrOfIndentSpace>2</nrOfIndentSpace>
<expandEmptyElements>false</expandEmptyElements>
<spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement>
</sortPom>
</pom>
<markdown>
<includes>
<include>**/*.md</include>
</includes>
</markdown>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -393,17 +404,4 @@
</build>
</profile>
</profiles>

<licenses>
<license>
<name>Apache License</name>
</license>
</licenses>

<scm>
<url>https://github.com/camunda-community-hub/camunda-operate-client-java</url>
<connection>scm:git:[email protected]:camunda-community-hub/camunda-operate-client-java.git</connection>
<developerConnection>scm:git:[email protected]:camunda-community-hub/camunda-operate-client-java.git</developerConnection>
<tag>HEAD</tag>
</scm>
</project>