Skip to content

Commit

Permalink
chore: Added a bom (#345)
Browse files Browse the repository at this point in the history
* chore: Add a bom
  • Loading branch information
jamespfaulkner authored Nov 29, 2023
1 parent 3926020 commit f0f51fa
Show file tree
Hide file tree
Showing 4 changed files with 109 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,8 @@ ij_yaml_space_before_colon=false
ij_yaml_spaces_within_braces=true
ij_yaml_spaces_within_brackets=true
ij_yaml_sequence_on_new_line=false
ij_yaml_block_mapping_on_new_line=false
ij_yaml_block_mapping_on_new_line=false

[*.xml]
indent_size=2
indent_style=space
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [unreleased]
### Added
- stream-registry bom

## [2.1.2]
### No change [DO NOT USE]

Expand Down
99 changes: 99 additions & 0 deletions bom/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<?xml version="1.0" encoding="UTF-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>
<parent>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry</artifactId>
<version>2.1.3-SNAPSHOT</version>
</parent>

<artifactId>stream-registry-bom</artifactId>
<packaging>pom</packaging>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-app</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-graphql-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-graphql-maven-plugin</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-graphql-scalars</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-handler-spi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-repository-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-repository-kafka</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-state-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-state-avro</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-state-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-state-graphql-sender</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-state-kafka-sender</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.expediagroup.streamplatform</groupId>
<artifactId>stream-registry-state-kafka-receiver</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<module>state/kafka-sender</module>
<module>state/kafka-receiver</module>
<module>it</module>
<module>bom</module>
</modules>

<properties>
Expand Down

0 comments on commit f0f51fa

Please sign in to comment.