This is an automated email from the ASF dual-hosted git repository. xyuanlu pushed a commit to branch helix-gateway-service in repository https://gitbox.apache.org/repos/asf/helix.git
commit fe975d777efa9e16c8f1bca75af555e30fd0f52e Author: Zachary Pinto <zapi...@linkedin.com> AuthorDate: Fri Sep 13 10:53:13 2024 -0700 Include java stubs in jdk11 jar. (#2920) Add helix-gateway java stubs to for jdk11 jar --- helix-gateway/pom.xml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/helix-gateway/pom.xml b/helix-gateway/pom.xml index 7b3f3ab6b..fae9d97da 100644 --- a/helix-gateway/pom.xml +++ b/helix-gateway/pom.xml @@ -194,7 +194,7 @@ <version>3.3.0</version> <executions> <execution> - <id>default-package-jdk11</id> + <id>default-package-jdk8</id> <phase>package</phase> <goals> <goal>jar</goal> @@ -204,6 +204,17 @@ <classifier>jdk8</classifier> </configuration> </execution> + <execution> + <id>default-package-jdk11</id> + <phase>package</phase> + <goals> + <goal>jar</goal> + </goals> + <configuration> + <classesDirectory>${project.build.outputDirectory}</classesDirectory> + <classifier>jdk11</classifier> + </configuration> + </execution> </executions> </plugin> <plugin>