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
The following commit(s) were added to refs/heads/helix-gateway-service by this
push:
new 54d687fe0 Include java stubs in jdk11 jar. (#2920)
54d687fe0 is described below
commit 54d687fe0e142db4d66b023cdb472c626acaaf99
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>