Skip to content

Commit

Permalink
Add dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
enstulen committed May 6, 2024
1 parent cbe4191 commit 5a63bbd
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
4 changes: 4 additions & 0 deletions arkiverer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@
<artifactId>kafka-clients</artifactId>
<version>${kafka.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${commons-codec.version}</version> </dependency>
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-streams-avro-serde</artifactId>
Expand Down
24 changes: 24 additions & 0 deletions clients/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,17 @@
<artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
<version>${springdoc-openapi.version}</version>
</dependency>

<dependency>
<groupId>io.kotlintest</groupId>
<artifactId>kotlintest-runner-junit5</artifactId>
<version>${kotlintest.version}</version>
</dependency>
<dependency>
<groupId>io.kotlintest</groupId>
<artifactId>kotlintest-assertions</artifactId>
<version>${kotlintest.version}</version>
</dependency>
</dependencies>


Expand Down Expand Up @@ -123,6 +134,19 @@
<jvmTarget>${java.version}</jvmTarget>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire.version}</version>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>${junit-platform.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>

Expand Down
4 changes: 4 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
<jakarta-validation-api.version>3.0.2</jakarta-validation-api.version>
<jakarta-annotation.version>2.1.1</jakarta-annotation.version>
<graphql-kotlin.version>7.1.1</graphql-kotlin.version>
<commons-codec.version>1.17.0</commons-codec.version>

<!-- OpenAPI -->
<springdoc-openapi.version>2.5.0</springdoc-openapi.version>
Expand All @@ -58,13 +59,16 @@
<mockk.version>1.13.10</mockk.version>
<springmockk.version>4.0.2</springmockk.version>
<wiremock.version>2.27.2</wiremock.version>
<kotlintest.version>3.4.2</kotlintest.version>

<!--Plugins-->
<versions-maven-plugin.version>2.16.2</versions-maven-plugin.version>
<openapi-generator-maven-plugin.version>7.5.0</openapi-generator-maven-plugin.version>
<remote-comparer-maven-plugin.version>1.0.5</remote-comparer-maven-plugin.version>
<cyclonedx-maven-plugin.version>2.8.0</cyclonedx-maven-plugin.version>
<maven-enforcer.version>3.4.1</maven-enforcer.version>
<maven-surefire.version>2.22.1</maven-surefire.version>
<junit-platform.version>1.2.0</junit-platform.version>
</properties>


Expand Down

0 comments on commit 5a63bbd

Please sign in to comment.