Skip to content

Commit

Permalink
Merge branch 'feat/new_platform' into feature/#254-create-actions-for…
Browse files Browse the repository at this point in the history
…-builds-and-releases
  • Loading branch information
lmoesle committed Apr 9, 2024
2 parents 3b7a9eb + b13c7f5 commit 8ea3da4
Show file tree
Hide file tree
Showing 59 changed files with 27 additions and 127 deletions.
2 changes: 1 addition & 1 deletion connect/camunda7-remote/message/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<dependencies>
<dependency>
<groupId>io.miranum.platform</groupId>
<artifactId>message-api</artifactId>
<artifactId>connect-message-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion connect/camunda7-remote/process/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<dependencies>
<dependency>
<groupId>io.miranum.platform</groupId>
<artifactId>process-api</artifactId>
<artifactId>connect-process-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion connect/camunda7-remote/worker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<!-- Miranum -->
<dependency>
<groupId>io.miranum.platform</groupId>
<artifactId>worker-api</artifactId>
<artifactId>connect-worker-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion connect/camunda8/message/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<dependencies>
<dependency>
<groupId>io.miranum.platform</groupId>
<artifactId>message-api</artifactId>
<artifactId>connect-message-api</artifactId>
<version>${project.version}</version>
</dependency>
<!--Camunda-->
Expand Down
2 changes: 1 addition & 1 deletion connect/camunda8/process/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<dependencies>
<dependency>
<groupId>io.miranum.platform</groupId>
<artifactId>process-api</artifactId>
<artifactId>connect-process-api</artifactId>
<version>${project.version}</version>
</dependency>
<!--Camunda-->
Expand Down
2 changes: 1 addition & 1 deletion connect/camunda8/worker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<!-- Miranum -->
<dependency>
<groupId>io.miranum.platform</groupId>
<artifactId>worker-api</artifactId>
<artifactId>connect-worker-api</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<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/maven-v4_0_0.xsd">

<artifactId>element-template-api</artifactId>
<artifactId>connect-element-template-api</artifactId>
<name>element-template-api</name>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>

<parent>
<groupId>io.miranum.platform</groupId>
<artifactId>connect-element-templates</artifactId>
<artifactId>connect-core</artifactId>
<version>${revision}</version>
</parent>

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

</project>
</project>
20 changes: 0 additions & 20 deletions connect/core/element-templates/pom.xml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<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/maven-v4_0_0.xsd">

<artifactId>message-api</artifactId>
<artifactId>connect-message-api</artifactId>
<name>message-api</name>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>

<parent>
<groupId>io.miranum.platform</groupId>
<artifactId>connect-message</artifactId>
<artifactId>connect-core</artifactId>
<version>${revision}</version>
</parent>

Expand Down
20 changes: 0 additions & 20 deletions connect/core/message/pom.xml

This file was deleted.

10 changes: 5 additions & 5 deletions connect/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
</parent>

<modules>
<module>task</module>
<module>message</module>
<module>worker</module>
<module>process</module>
<module>task-api</module>
<module>message-api</module>
<module>worker-api</module>
<module>process-api</module>
<module>json</module>
<module>s3</module>
<module>element-templates</module>
<module>element-template-api</module>
<module>shared</module>
</modules>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<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/maven-v4_0_0.xsd">

<artifactId>process-api</artifactId>
<artifactId>connect-process-api</artifactId>
<name>process-core</name>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>

<parent>
<groupId>io.miranum.platform</groupId>
<artifactId>connect-process</artifactId>
<artifactId>connect-core</artifactId>
<version>${revision}</version>
</parent>

Expand Down
20 changes: 0 additions & 20 deletions connect/core/process/pom.xml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<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/maven-v4_0_0.xsd">

<artifactId>task-api</artifactId>
<artifactId>connect-task-api</artifactId>
<name>task-api</name>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>

<parent>
<groupId>io.miranum.platform</groupId>
<artifactId>connect-task</artifactId>
<artifactId>connect-core</artifactId>
<version>${revision}</version>
</parent>

Expand Down
20 changes: 0 additions & 20 deletions connect/core/task/pom.xml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<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/maven-v4_0_0.xsd">

<artifactId>worker-api</artifactId>
<artifactId>connect-worker-api</artifactId>
<name>worker-core</name>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>

<parent>
<groupId>io.miranum.platform</groupId>
<artifactId>connect-worker</artifactId>
<artifactId>connect-core</artifactId>
<version>${revision}</version>
</parent>

Expand Down
20 changes: 0 additions & 20 deletions connect/core/worker/pom.xml

This file was deleted.

6 changes: 3 additions & 3 deletions connect/templates/generator-maven-plugin-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@

<dependency>
<groupId>io.miranum.platform</groupId>
<artifactId>element-template-api</artifactId>
<artifactId>connect-element-template-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.miranum.platform</groupId>
<artifactId>worker-api</artifactId>
<artifactId>connect-worker-api</artifactId>
<version>${revision}</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
</project>
4 changes: 2 additions & 2 deletions platform/engine/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@
</dependency>
<dependency>
<groupId>io.miranum.platform</groupId>
<artifactId>message-api</artifactId>
<artifactId>connect-message-api</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>io.miranum.platform</groupId>
<artifactId>process-api</artifactId>
<artifactId>connect-process-api</artifactId>
<version>${revision}</version>
</dependency>

Expand Down

0 comments on commit 8ea3da4

Please sign in to comment.