-
Notifications
You must be signed in to change notification settings - Fork 520
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support visit of stage repository #2305
Conversation
Currently, the issue of missing the common1.0.1 package has been fixed.
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<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>
</profiles>
Fix private repository package issue with 'mvn xxx -P stage
(eg: mvn clean compile -U -Dmaven.javadoc.skip=true -ntp -P stage)
the first problem we have to handle them now like in action add: |
pom.xml
Outdated
<profile> | ||
<id>exclude-jdk11-modules</id> | ||
<activation> | ||
<jdk>11</jdk> | ||
</activation> | ||
<modules> | ||
<module>hugegraph-store</module> | ||
<module>hugegraph-pd</module> | ||
</modules> | ||
</profile> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Due to the current support for JDK 11 compilation in the store/pd , it is necessary to exclude these two modules in the JDK 8.
<module>hugegraph-pd</module> | ||
<module>hugegraph-store</module> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exclude jdk11-only modules cc @VGalaxies
Codecov Report
@@ Coverage Diff @@
## pd-store #2305 +/- ##
===========================================
Coverage ? 54.21%
Complexity ? 905
===========================================
Files ? 498
Lines ? 40626
Branches ? 5658
===========================================
Hits ? 22027
Misses ? 16305
Partials ? 2294 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
module:PD Run api test backed:(memory 11,Cassandra 11,scylladb 11,hbase 11,rocksdb 11,mysql 11,build 11)
module:PD Run unit test backed:(memory 11,Cassandra 11,scylladb 11,hbase 11,rocksdb 11,mysql 11,postgresql11)
module:server Run api test backed:(postgresql11)
module:PD Run core test backed:(postgresql11)
module:PD Run api test backed:(memory 11,Cassandra 11,scylladb 11,hbase 11,rocksdb 11,mysql 11)
Run raft test backed:(rocksdb 8)
module:server Run api test backed:(mysql 8)
module:server Run core test backed:(postgresql 8,postgresql 11)
|
<pluginRepositories> | ||
<pluginRepository> | ||
<id>staged-releases</id> | ||
<url>https://repository.apache.org/content/groups/staging/</url> | ||
</pluginRepository> | ||
</pluginRepositories> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe we don't need it, although we could keep it now
Co-authored-by: imbajin <jin@apache.org>
Purpose of the PR
support visit of stage repository
Main Changes
Verifying these changes
Does this PR potentially affect the following parts?
Documentation Status
Doc - TODO
Doc - Done
Doc - No Need