Skip to content

Commit 726e1a5

Browse files
committed
merge from upstream
2 parents 342f263 + 8fc3e09 commit 726e1a5

139 files changed

Lines changed: 3209 additions & 3058 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
version: 2
6+
updates:
7+
- package-ecosystem: "maven"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"
11+
open-pull-requests-limit: 3
12+
cooldown:
13+
default-days: 10
14+
ignore:
15+
- dependency-name: "org.apache.calcite:calcite-core"
16+
- dependency-name: "org.apache.calcite:calcite-linq4j"
17+
- dependency-name: "org.apache.calcite.avatica:avatica-core"
18+
19+
- dependency-name: "org.springframework:*"
20+
- dependency-name: "org.springframework.*:*"
21+
22+
- dependency-name: "junit:junit"
23+
24+
- dependency-name: "com.h2database:h2"

.github/workflows/commit-check.yml

Lines changed: 44 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
java: [ '11' ]
34+
java: [ '17' ]
3535
name: Check java code on JDK ${{ matrix.java }}
3636
steps:
3737
- uses: actions/checkout@v4
@@ -49,14 +49,50 @@ jobs:
4949
sudo apt-get update && sudo apt-get install libnuma-dev
5050
5151
- name: Set MAVEN_OPTS
52-
if: ${{ matrix.java == '11' }}
52+
if: ${{ matrix.java == '17' }}
5353
run: |
54-
echo MAVEN_OPTS='--illegal-access=permit --add-exports=java.base/jdk.internal.misc=ALL-UNNAMED
55-
--add-exports=java.base/sun.nio.ch=ALL-UNNAMED
56-
--add-exports=java.management/com.sun.jmx.mbeanserver=ALL-UNNAMED
57-
--add-exports=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED
58-
--add-exports=java.base/sun.reflect.generics.reflectiveObjects=ALL-UNNAMED
59-
-Djdk.tls.client.protocols=TLSv1.2' >> $GITHUB_ENV
54+
{
55+
echo 'MAVEN_OPTS<<EOF'
56+
echo '--add-exports=java.base/jdk.internal.misc=ALL-UNNAMED'
57+
echo '--add-exports=java.base/sun.nio.ch=ALL-UNNAMED'
58+
echo '--add-exports=java.management/com.sun.jmx.mbeanserver=ALL-UNNAMED'
59+
echo '--add-exports=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED'
60+
echo '--add-exports=java.base/sun.reflect.generics.reflectiveObjects=ALL-UNNAMED'
61+
echo '--add-opens=java.base/jdk.internal.access=ALL-UNNAMED'
62+
echo '--add-opens=java.base/jdk.internal.loader=ALL-UNNAMED'
63+
echo '--add-opens=java.base/jdk.internal.misc=ALL-UNNAMED'
64+
echo '--add-opens=java.base/sun.net.util=ALL-UNNAMED'
65+
echo '--add-opens=java.base/sun.nio.ch=ALL-UNNAMED'
66+
echo '--add-opens=java.base/sun.nio.fs=ALL-UNNAMED'
67+
echo '--add-opens=java.base/sun.util.calendar=ALL-UNNAMED'
68+
echo '--add-opens=java.management/com.sun.jmx.mbeanserver=ALL-UNNAMED'
69+
echo '--add-opens=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED'
70+
echo '--add-opens=java.base/sun.reflect.generics.reflectiveObjects=ALL-UNNAMED'
71+
echo '--add-opens=jdk.management/com.sun.management.internal=ALL-UNNAMED'
72+
echo '--add-opens=java.base/java.io=ALL-UNNAMED'
73+
echo '--add-opens=java.base/java.nio=ALL-UNNAMED'
74+
echo '--add-opens=java.base/java.net=ALL-UNNAMED'
75+
echo '--add-opens=java.base/java.util=ALL-UNNAMED'
76+
echo '--add-opens=java.base/java.util.concurrent=ALL-UNNAMED'
77+
echo '--add-opens=java.base/java.util.concurrent.locks=ALL-UNNAMED'
78+
echo '--add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED'
79+
echo '--add-opens=java.base/java.lang=ALL-UNNAMED'
80+
echo '--add-opens=java.base/java.lang.invoke=ALL-UNNAMED'
81+
echo '--add-opens=java.base/java.math=ALL-UNNAMED'
82+
echo '--add-opens=java.sql/java.sql=ALL-UNNAMED'
83+
echo '--add-opens=java.base/java.lang.reflect=ALL-UNNAMED'
84+
echo '--add-opens=java.base/java.time=ALL-UNNAMED'
85+
echo '--add-opens=java.base/java.text=ALL-UNNAMED'
86+
echo '--add-opens=java.base/java.security=ALL-UNNAMED'
87+
echo '--add-opens=java.logging/java.util.logging=ALL-UNNAMED'
88+
echo '--add-opens=java.management/sun.management=ALL-UNNAMED'
89+
echo '--add-opens=java.desktop/java.awt.font=ALL-UNNAMED'
90+
echo '--add-opens=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED'
91+
echo '--add-opens=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED'
92+
echo '--add-opens=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED'
93+
echo '-Djdk.tls.client.protocols=TLSv1.2'
94+
echo 'EOF'
95+
} >> $GITHUB_ENV
6096
6197
- name: Run codestyle and licenses checks
6298
run: |

.github/workflows/publish-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up Java
3636
uses: actions/setup-java@v2
3737
with:
38-
java-version: 11
38+
java-version: 17
3939
distribution: 'adopt'
4040
server-id: apache.snapshots.https
4141
server-username: NEXUS_USER

.github/workflows/sonar-branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ jobs:
4040
# "fetch-depth: 0" is needed for Sonar's new code detection, blame information and issue backdating
4141
# see more details at https://community.sonarsource.com/t/git-fetch-depth-implications/75260
4242

43-
- name: Setup JDK11
43+
- name: Setup JDK17
4444
uses: actions/setup-java@v4
4545
with:
4646
distribution: 'temurin'
47-
java-version: 11
47+
java-version: 17
4848

4949
- name: Cache SonarCloud packages
5050
uses: actions/cache@v4

.github/workflows/sonar-pr-from-fork-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ jobs:
3636
with:
3737
persist-credentials: false
3838

39-
- name: Set up JDK11
39+
- name: Set up JDK17
4040
uses: actions/setup-java@v4
4141
with:
4242
distribution: 'temurin'
43-
java-version: '11'
43+
java-version: '17'
4444

4545
- name: Cache local Maven repository
4646
uses: actions/cache@v4

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
<a href="https://ignite.apache.org/"><img src="https://github.com/apache/ignite-website/blob/master/assets/images/apache_ignite_logo.svg" hspace="20"/></a>
44

5+
[![Build Status](https://travis-ci.org/apache/ignite.svg?branch=master)](https://travis-ci.org/apache/ignite)
6+
[![GitHub](https://img.shields.io/github/license/apache/ignite?color=blue)](https://www.apache.org/licenses/LICENSE-2.0.html)
7+
[![Maven Central](https://img.shields.io/maven-central/v/org.apache.ignite/ignite-core?label=Maven%20Central&versionPrefix=2)](https://search.maven.org/search?q=org.apache.ignite)
8+
[![GitHub release](https://img.shields.io/badge/release-download-brightgreen.svg)](https://ignite.apache.org/download.cgi)
9+
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/apache/ignite)
10+
[![Twitter Follow](https://img.shields.io/twitter/follow/ApacheIgnite?style=social)](https://twitter.com/ApacheIgnite)
511

612
## Ignite 2.x and 3.x
713

0 commit comments

Comments
 (0)