Skip to content

Commit

Permalink
chore(broker): rename broker-core module
Browse files Browse the repository at this point in the history
  • Loading branch information
Zelldon committed Aug 20, 2019
1 parent 103de76 commit 60ee50f
Show file tree
Hide file tree
Showing 159 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This is a small overview of the contents of the different modules:
- `gateway-protocol` is the gRPC definitions for the Zeebe client-to-gateway protocol
- `zb-db` is our RocksDB wrapper for state management
- `engine` is the implementation of the event stream processor
- `broker-core` contains the Zeebe broker which is the server side of Zeebe
- `broker` contains the Zeebe broker which is the server side of Zeebe
- `client-java` contains the Java Zeebe client

## Building the Documentation
Expand Down Expand Up @@ -171,7 +171,7 @@ The commit message should match the following pattern
`broker`, `clients/java` or `clients/go`.
- `chore`: For code changes which are not user facing, `scope` should be
the folder name of the component which contains the main part of the
change, e.g. `broker-core` or `exporters`.
change, e.g. `broker` or `exporters`.
- `docs`: For changes on the documentation. `scope` should be the sub folder
name in the `docs/src/` directory which contains the main change, e.g.
`introduction` or `reference`.
Expand Down
2 changes: 1 addition & 1 deletion bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<dependencies>
<dependency>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-broker-core</artifactId>
<artifactId>zeebe-broker</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions broker-core/pom.xml → broker/pom.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,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>
<name>Zeebe Broker Core</name>
<artifactId>zeebe-broker-core</artifactId>
<name>Zeebe Broker</name>
<artifactId>zeebe-broker</artifactId>
<packaging>jar</packaging>

<parent>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<dependencies>
<dependency>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-broker-core</artifactId>
<artifactId>zeebe-broker</artifactId>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/reference/exporters.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ once every time a leader is elected for a partition.
At any given point, there is exactly one leader
node for a given partition. Whenever a node becomes the leader for a partition, one
of the things it will do is run an instance of an
[exporter stream processor](https://github.com/zeebe-io/zeebe/tree/{{commit}}/broker-core/src/main/java/io/zeebe/broker/exporter/stream/ExporterStreamProcessor.java).
[exporter stream processor](https://github.com/zeebe-io/zeebe/tree/{{commit}}/broker/src/main/java/io/zeebe/broker/exporter/stream/ExporterStreamProcessor.java).

This stream processor will create exactly one instance of each configured exporter,
and forward every record written on the stream to each of these in turn.
Expand Down
2 changes: 1 addition & 1 deletion parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
<dependencies>
<dependency>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-broker-core</artifactId>
<artifactId>zeebe-broker</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<type>test-jar</type>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<modules>
<module>bom</module>
<module>parent</module>
<module>broker-core</module>
<module>broker</module>
<module>qa</module>
<module>protocol-test-util</module>
<module>samples</module>
Expand Down
4 changes: 2 additions & 2 deletions qa/integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<dependencies>
<dependency>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-broker-core</artifactId>
<artifactId>zeebe-broker</artifactId>
</dependency>

<dependency>
Expand Down Expand Up @@ -115,7 +115,7 @@

<dependency>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-broker-core</artifactId>
<artifactId>zeebe-broker</artifactId>
<type>test-jar</type>
<classifier>tests</classifier>
<scope>test</scope>
Expand Down
2 changes: 1 addition & 1 deletion test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<dependency>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-broker-core</artifactId>
<artifactId>zeebe-broker</artifactId>
</dependency>

<dependency>
Expand Down

0 comments on commit 60ee50f

Please sign in to comment.