From f2e01d57907cf692472659333c1c78f882cac12b Mon Sep 17 00:00:00 2001 From: Gaston Thea Date: Fri, 17 Apr 2026 17:44:00 -0300 Subject: [PATCH] Add Maven pom.xml to events module for standalone JAR builds. Enabled building events module as a standalone Maven artifact. --- events/pom.xml | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 events/pom.xml diff --git a/events/pom.xml b/events/pom.xml new file mode 100644 index 000000000..5505bff4d --- /dev/null +++ b/events/pom.xml @@ -0,0 +1,76 @@ + + + 4.0.0 + + io.harness + events + 1.0.0 + jar + Generic event-bus framework (pure Java) + + + 1.8 + 1.8 + UTF-8 + + + + + + org.jetbrains + annotations + 23.0.0 + + + + junit + junit + 4.13.2 + test + + + org.mockito + mockito-core + 4.8.0 + test + + + org.mockito + mockito-inline + 4.8.0 + test + + + + + src/main/java + src/test/java + + + org.apache.maven.plugins + maven-compiler-plugin + 3.10.1 + + 1.8 + 1.8 + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + attach-sources + + jar + + + + + + +