Skip to content

Commit

Permalink
fix(build): rename conflicting module auth-api (datahub-project#6728)
Browse files Browse the repository at this point in the history
* fix(build): rename conflicting module `auth-api`
  • Loading branch information
david-leifker authored and cccs-Dustin committed Feb 1, 2023
1 parent 8dab15b commit 486bafe
Show file tree
Hide file tree
Showing 14 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion datahub-frontend/play.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
}

compile project(":metadata-service:restli-client")
compile project(":metadata-service:auth-api")
compile project(":metadata-service:auth-config")


implementation externalDependency.jettyJaas
Expand Down
2 changes: 1 addition & 1 deletion datahub-graphql-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ apply plugin: 'java'
dependencies {
compile project(':metadata-service:restli-client')
compile project(':metadata-service:auth-impl')
compile project(':metadata-service:auth-api')
compile project(':metadata-service:auth-config')
compile project(':metadata-io')
compile project(':metadata-utils')

Expand Down
2 changes: 1 addition & 1 deletion metadata-jobs/mae-consumer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {
compile (project(':metadata-service:factories')) {
exclude group: 'org.neo4j.test'
}
compile project(':metadata-service:auth-api')
compile project(':metadata-service:auth-config')
compile project(':metadata-service:restli-client')
compile project(':metadata-io')
compile project(':ingestion-scheduler')
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion metadata-service/auth-filter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java'

dependencies {
compile project(':metadata-auth:auth-api');
compile project(path: ':metadata-service:auth-api')
compile project(path: ':metadata-service:auth-config')
compile project(path: ':metadata-service:factories')

compile externalDependency.servletApi
Expand Down
2 changes: 1 addition & 1 deletion metadata-service/auth-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ compileJava {
dependencies {
compile project(path: ':metadata-models')
compile project(path: ':metadata-auth:auth-api')
compile project(path: ':metadata-service:auth-api')
compile project(path: ':metadata-service:auth-config')
compile project(path: ':metadata-io')

implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
Expand Down
2 changes: 1 addition & 1 deletion metadata-service/factories/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies {
compile project(':metadata-io')
compile project(':metadata-utils')
compile project(':metadata-service:auth-impl')
compile project(':metadata-service:auth-api')
compile project(':metadata-service:auth-config')
compile project(':metadata-service:plugin')
compile project(':datahub-graphql-core')
compile project(':metadata-service:restli-servlet-impl')
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ include 'datahub-graphql-core'
include 'metadata-service:war'
include 'metadata-service:servlet'
include 'metadata-service:factories'
include 'metadata-service:auth-api'
include 'metadata-service:auth-config'
include 'metadata-service:auth-impl'
include 'metadata-service:auth-filter'
include 'metadata-service:auth-servlet-impl'
Expand Down

0 comments on commit 486bafe

Please sign in to comment.