Match plugins folder name with plugin name Typically plugins are linked to gerrit/plugins using their repository name that is 'owners' in this case. Change-Id: I4a4b8052d66d9d48a165671f39424b3b039f9d60
diff --git a/common.defs b/common.defs index a717515..45a7f6a 100644 --- a/common.defs +++ b/common.defs
@@ -2,7 +2,7 @@ include_defs('//lib/prolog/prolog.defs') EXTERNAL_DEPS = [ - '//plugins/gerrit-owners/gerrit-owners-common' + i for i in [ + '//plugins/owners/gerrit-owners-common' + i for i in [ ':gitective-core', ':jackson-core', ':jackson-databind',
diff --git a/gerrit-owners-autoassign/BUCK b/gerrit-owners-autoassign/BUCK index 516426f..f1b033a 100644 --- a/gerrit-owners-autoassign/BUCK +++ b/gerrit-owners-autoassign/BUCK
@@ -1,4 +1,4 @@ -include_defs('//plugins/gerrit-owners/common.defs') +include_defs('//plugins/owners/common.defs') include_defs('//lib/maven.defs') include_defs('//lib/prolog/prolog.defs') @@ -14,6 +14,6 @@ 'Gerrit-Module: com.vmware.gerrit.owners.common.AutoassignModule', ], deps = [ - '//plugins/gerrit-owners/gerrit-owners-common:common', + '//plugins/owners/gerrit-owners-common:common', ] + EXTERNAL_DEPS, )
diff --git a/gerrit-owners-common/BUCK b/gerrit-owners-common/BUCK index 61f5e60..92492e4 100644 --- a/gerrit-owners-common/BUCK +++ b/gerrit-owners-common/BUCK
@@ -1,4 +1,4 @@ -include_defs('//plugins/gerrit-owners/common.defs') +include_defs('//plugins/owners/common.defs') include_defs('//lib/maven.defs') include_defs('//lib/prolog/prolog.defs')
diff --git a/gerrit-owners/BUCK b/gerrit-owners/BUCK index 009de04..44085c6 100644 --- a/gerrit-owners/BUCK +++ b/gerrit-owners/BUCK
@@ -1,4 +1,4 @@ -include_defs('//plugins/gerrit-owners/common.defs') +include_defs('//plugins/owners/common.defs') include_defs('//lib/maven.defs') include_defs('//lib/prolog/prolog.defs') @@ -13,7 +13,7 @@ 'src/main/java/**/*.java', ], excludes=COMPILE_STUB), deps = [ - '//plugins/gerrit-owners/gerrit-owners-common:common', + '//plugins/owners/gerrit-owners-common:common', ] + COMPILE_DEPS + EXTERNAL_DEPS, )