Link replication plugin After splitting the `replication` plugin into `api` and main modules, we cannot relay anymore on the `replication` classes being loaded before `pull-replication` starts therefore we need to embedd those classes directly into our JAR file by removing `neverlink = 1` from the build configuration. Change-Id: Ic632e69d247aa68ac6e15438892672edfba3e643
diff --git a/BUILD b/BUILD index 4070d7c..6072201 100644 --- a/BUILD +++ b/BUILD
@@ -19,7 +19,7 @@ ":delete-project-neverlink", ":events-broker-neverlink", ":healthcheck-neverlink", - ":replication-neverlink", + ":replication", "//lib/commons:io", "@commons-lang3//jar", ], @@ -97,8 +97,7 @@ ) java_library( - name = "replication-neverlink", - neverlink = 1, + name = "replication", exports = ["//plugins/replication"], )