msgui commented on code in PR #2305:
URL:
https://github.com/apache/incubator-hugegraph/pull/2305#discussion_r1314102877
##########
pom.xml:
##########
@@ -94,7 +94,32 @@
<modules>
<module>hugegraph-server</module>
- <module>hugegraph-pd</module>
- <module>hugegraph-store</module>
</modules>
+ <profiles>
+ <profile>
+ <id>stage</id>
+ <repositories>
+ <repository>
+ <id>staged-releases</id>
+
<url>https://repository.apache.org/content/groups/staging/</url>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>staged-releases</id>
+
<url>https://repository.apache.org/content/groups/staging/</url>
+ </pluginRepository>
+ </pluginRepositories>
+ </profile>
+ <profile>
+ <id>exclude-jdk11-modules</id>
+ <activation>
+ <jdk>11</jdk>
+ </activation>
+ <modules>
+ <module>hugegraph-store</module>
+ <module>hugegraph-pd</module>
+ </modules>
+ </profile>
Review Comment:
Due to the current support for JDK 11 compilation in the hugegraph-store/pd
modules, it is necessary to exclude these two modules in the JDK 8.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]