Skip to content

Commit

Permalink
Rename multi-tenancy Spring Boot dependencies
Browse files Browse the repository at this point in the history
The multi-tenancy Spring Boot auto-configure and starter dependency are
not prefixed with `axon-`. Hence, the prefix that's present should be
removed.

#88
  • Loading branch information
smcvb committed Sep 19, 2022
1 parent 21c1514 commit 5761d73
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions pom.xml
Expand Up @@ -13,9 +13,8 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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">

<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">

<groupId>org.axonframework</groupId>
<artifactId>axon-bom</artifactId>
Expand Down Expand Up @@ -63,6 +62,7 @@

<dependencyManagement>
<dependencies>

<!-- Axon Server Connector -->
<dependency>
<groupId>io.axoniq</groupId>
Expand All @@ -76,6 +76,13 @@
<version>${axonserver-plugin-api.version}</version>
</dependency>

<!-- Project Reactor - Included to avoid compatability issues when updating from older Axon versions -->
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>${projectreactor.version}</version>
</dependency>

<!-- Axon Framework -->
<dependency>
<groupId>org.axonframework</groupId>
Expand Down Expand Up @@ -147,6 +154,12 @@
<artifactId>axon-tracing-opentelemetry</artifactId>
<version>${axon.version}</version>
</dependency>
<!-- Extension - Spring-Native -->
<dependency>
<groupId>org.axonframework.experimental</groupId>
<artifactId>axon-spring-native</artifactId>
<version>${extension.spring-native.version}</version>
</dependency>
<!-- Extension - AMQP -->
<dependency>
<groupId>org.axonframework.extensions.amqp</groupId>
Expand Down Expand Up @@ -245,12 +258,6 @@
<artifactId>axon-reactor-spring-boot-starter</artifactId>
<version>${extension.reactor.version}</version>
</dependency>
<!-- Extension - Spring-Native -->
<dependency>
<groupId>org.axonframework.experimental</groupId>
<artifactId>axon-spring-native</artifactId>
<version>${extension.spring-native.version}</version>
</dependency>
<!-- Extension - Spring Cloud -->
<dependency>
<groupId>org.axonframework.extensions.springcloud</groupId>
Expand Down Expand Up @@ -283,13 +290,6 @@
<artifactId>axon-tracing-spring-boot-starter</artifactId>
<version>${extension.tracing.version}</version>
</dependency>

<!-- Project Reactor - Included to avoid compatability issues when updating from older Axon versions -->
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>${projectreactor.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 5761d73

Please sign in to comment.