Skip to content

Commit

Permalink
chore: Add a bom
Browse files Browse the repository at this point in the history
  • Loading branch information
jamespfaulkner committed Nov 27, 2023
1 parent 27a8157 commit a3923f2
Show file tree
Hide file tree
Showing 3 changed files with 105 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
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.0.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 @@ -62,6 +62,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 a3923f2

Please sign in to comment.