Skip to content

Commit

Permalink
fix(quarkus): use quarkus-extension-maven-plugin (camunda#3359)
Browse files Browse the repository at this point in the history
This plugin is needed to fill in the missing parts in the extension descriptor.

---------

Co-authored-by: Tassilo Weidner <3015690+tasso94@users.noreply.github.com>
  • Loading branch information
gastaldi and tasso94 authored May 12, 2023
1 parent 0cac0e4 commit b4d5df9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
22 changes: 16 additions & 6 deletions quarkus-extension/engine/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,23 @@
</dependencies>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-extension-maven-plugin</artifactId>
<version>${version.quarkus}</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>extension-descriptor</goal>
</goals>
<configuration>
<deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}</deployment>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
---
artifact: ${project.groupId}:${project.artifactId}:${project.version}
name: "Camunda Platform Engine"
description: "Quarkus Extension for the Camunda Platform Engine"
name: "Camunda Platform 7 Engine"
description: "Quarkus Extension for the Camunda Platform 7 Engine"
metadata:
keywords:
- "camunda"
- "camunda-platform"
- "camunda-7"
- "camunda-platform-7"
- "processes"
- "decisions"
- "bpmn"
- "dmn"
guide: "https://docs.camunda.org/manual/"
guide: "https://docs.camunda.org/manual/latest/user-guide/quarkus-integration/"
categories:
- "business-automation"
status: "preview"

0 comments on commit b4d5df9

Please sign in to comment.