Skip to content

Commit

Permalink
Merge pull request #26 from ps-dev/ADAPT1-1204-replacementTopics-fix-…
Browse files Browse the repository at this point in the history
…avro-namespace

 ADAPT1-1204: Fix namespace while moving AdditionalValidation to common package
  • Loading branch information
aman-minz authored May 23, 2024
2 parents 178564a + 32ec0e8 commit 5a797fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
package hydra.common.validation

import enumeratum.{Enum, EnumEntry}
import vulcan.AvroNamespace

import scala.collection.immutable

@AvroNamespace("hydra.kafka.model")
sealed trait AdditionalValidation extends EnumEntry
sealed trait MetadataAdditionalValidation extends AdditionalValidation
sealed trait SchemaAdditionalValidation extends AdditionalValidation
Expand Down
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ object Dependencies {
val integrationDeps: Seq[ModuleID] = testContainers ++ TestLibraries.getTestLibraries(module = "it")

val baseDeps: Seq[ModuleID] =
akka ++ Seq(avro, ciris, refined, enumeratum) ++ cats ++ logging ++ joda ++ testDeps ++ kafkaClients ++ awsMskIamAuth
akka ++ Seq(avro, ciris, refined, enumeratum) ++ cats ++ logging ++ joda ++ testDeps ++ kafkaClients ++ awsMskIamAuth ++ vulcan

val avroDeps: Seq[ModuleID] =
baseDeps ++ confluent ++ jackson ++ guavacache ++ catsEffect ++ redisCache
Expand All @@ -219,7 +219,7 @@ object Dependencies {
akkaKafkaStream,
refined,
sprayJson
) ++ kafka ++ akkaHttpHal ++ vulcan ++ fs2Kafka ++ integrationDeps
) ++ kafka ++ akkaHttpHal ++ fs2Kafka ++ integrationDeps

val awsAuthDeps: Seq[ModuleID] = awsSdk

Expand Down

0 comments on commit 5a797fa

Please sign in to comment.