Skip to content

Commit

Permalink
build: rename maven artifacts
Browse files Browse the repository at this point in the history
Change the artifact ids by adding the prefix `zeebe-spec-`.

Change the group id from `io.zeebe.bpmn-spec` to `org.camunda.community`.
  • Loading branch information
saig0 committed Feb 11, 2023
1 parent 61f72c7 commit ccc9860
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
7 changes: 4 additions & 3 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
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">
<parent>
<artifactId>root</artifactId>
<groupId>io.zeebe.bpmn-spec</groupId>
<groupId>org.camunda.community</groupId>
<artifactId>zeebe-spec-root</artifactId>
<version>3.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>core</artifactId>
<artifactId>zeebe-spec-core</artifactId>
<name>Zeebe Spec - Core</name>

<dependencies>
<dependency>
Expand Down
12 changes: 6 additions & 6 deletions junit-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
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">
<parent>
<artifactId>root</artifactId>
<groupId>io.zeebe.bpmn-spec</groupId>
<groupId>org.camunda.community</groupId>
<artifactId>zeebe-spec-root</artifactId>
<version>3.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>junit-extension</artifactId>

<artifactId>zeebe-spec-junit-extension</artifactId>
<name>Zeebe Spec - JUnit Extension</name>

<dependencies>

<dependency>
<groupId>io.zeebe.bpmn-spec</groupId>
<artifactId>core</artifactId>
<groupId>org.camunda.community</groupId>
<artifactId>zeebe-spec-core</artifactId>
</dependency>

<dependency>
Expand Down
10 changes: 4 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@
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>

<groupId>io.zeebe.bpmn-spec</groupId>
<artifactId>root</artifactId>
<artifactId>zeebe-spec-root</artifactId>
<version>3.0.0-SNAPSHOT</version>
<name>BPMN Spec - Root</name>
<description>A tool to write tests for BPMN processes</description>
<name>Zeebe Spec - Root</name>

<packaging>pom</packaging>

Expand Down Expand Up @@ -47,8 +45,8 @@
<dependencies>

<dependency>
<groupId>io.zeebe.bpmn-spec</groupId>
<artifactId>core</artifactId>
<groupId>org.camunda.community</groupId>
<artifactId>zeebe-spec-core</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down

0 comments on commit ccc9860

Please sign in to comment.