This is an automated email from the ASF dual-hosted git repository. jxue pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/helix.git
commit 0fd6d0e4ea585a9543b1c78779fe64701e96dc4a Author: Zachary Pinto <[email protected]> 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>
