-
Notifications
You must be signed in to change notification settings - Fork 676
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into TargetSearchConcurrency
- Loading branch information
Showing
1,792 changed files
with
61,030 additions
and
29,867 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,7 @@ github: | |
branch_9_5: {} | ||
branch_9_6: {} | ||
branch_9_7: {} | ||
branch_9_8: {} | ||
branch_9x: {} | ||
|
||
protected_tags: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,14 +24,22 @@ jobs: | |
|
||
days-before-pr-stale: 60 | ||
days-before-issue-stale: -1 # we don't use issues | ||
days-before-close: -1 # don't close stale PRs/issues | ||
days-before-close: 60 # Close PRs marked as stale after 60 days | ||
exempt-draft-pr: true # don't mark draft PRs as stale | ||
exempt-pr-labels: "exempt-stale" # don't mark PRs with these labels as stale | ||
stale-pr-label: "stale" # label to use when marking as stale | ||
close-pr-label: "closed-stale" # label to use when closing a stale PR | ||
|
||
stale-pr-message: > | ||
This PR has had no activity for 60 days and is now labeled as stale. | ||
Any new activity or converting it to draft will remove the stale label. | ||
To attract more reviewers, please tag people who might be familiar with the code area and/or notify the [email protected] mailing list. | ||
Any new activity will remove the stale label. | ||
To attract more reviewers, please tag people who might be familiar with the code area and/or notify the [email protected] mailing list. | ||
To exempt this PR from being marked as stale, make it a draft PR or add the label "exempt-stale". | ||
If left unattended, this PR will be closed after another 60 days of inactivity. | ||
Thank you for your contribution! | ||
close-pr-message: > | ||
This PR is now closed due to 60 days of inactivity after being marked as stale. | ||
Re-opening this PR is still possible, in which case it will be marked as active again. | ||
operations-per-run: 100 # operations budget |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
plugins { | ||
id "java-gradle-plugin" | ||
alias(libs.plugins.diffplug.spotless) apply false | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
group = "org.apache" | ||
|
||
// Make sure the build environment is consistent. | ||
apply from: file('../../gradle/conventions.gradle') | ||
apply from: file('../../gradle/validation/check-environment.gradle') | ||
|
||
// Add spotless/ tidy. | ||
tasks.register("checkJdkInternalsExportedToGradle") {} | ||
apply from: file('../../gradle/validation/spotless.gradle') | ||
|
||
java { | ||
sourceCompatibility = JavaVersion.toVersion(libs.versions.java.min.get()) | ||
targetCompatibility = JavaVersion.toVersion(libs.versions.java.min.get()) | ||
} | ||
|
||
gradlePlugin { | ||
automatedPublishing = false | ||
|
||
plugins { | ||
buildInfra { | ||
id = 'solr.build-infra' | ||
implementationClass = 'org.apache.lucene.gradle.buildinfra.BuildInfraPlugin' | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation gradleApi() | ||
implementation localGroovy() | ||
|
||
implementation libs.commonscodec.commonscodec | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
rootProject.name = 'build-infra' | ||
|
||
// Use project's version catalog for centralized dependency management | ||
dependencyResolutionManagement { | ||
versionCatalogs { | ||
libs { | ||
from(files("../../gradle/libs.versions.toml")) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.