Skip to content

Commit cffa790

Browse files
jexpmarkpollack
authored andcommitted
Replace spring-batch with spring-ai in GH templates
1 parent 6554bde commit cffa790

File tree

5 files changed

+39
-45
lines changed

5 files changed

+39
-45
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ If the bug is trivial, just go ahead and create the issue. Otherwise, please tak
1414
A clear and concise description of what the bug is about.
1515

1616
**Environment**
17-
Please provide as many details as possible: Spring Batch version, Java version, which database you use if any, etc
17+
Please provide as many details as possible: Spring AI version, Java version, which vector store you use if any, etc
1818

1919
**Steps to reproduce**
2020
Steps to reproduce the issue.
@@ -23,5 +23,5 @@ Steps to reproduce the issue.
2323
A clear and concise description of what you expected to happen.
2424

2525
**Minimal Complete Reproducible example**
26-
Please provide a failing test or a [minimal complete verifiable example](https://github.com/spring-projects/spring-batch/blob/main/ISSUE_REPORTING.md) that reproduces the issue.
26+
Please provide a failing test or a minimal complete verifiable example that reproduces the issue.
2727
Bug reports that are reproducible will take priority in resolution over reports that are not reproducible.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Questions and Community Support
4-
url: https://stackoverflow.com/questions/tagged/spring-batch
5-
about: Please ask and answer questions on StackOverflow with the spring-batch tag
4+
url: https://stackoverflow.com/questions/tagged/spring-ai
5+
about: Please ask and answer questions on StackOverflow with the spring-ai tag

.github/ISSUE_TEMPLATE/miscellaneous.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ assignees: ''
1010
For anything other than bug reports and feature requests (performance, refactoring, etc),
1111
just go ahead and file the issue. Please provide as many details as possible.
1212

13-
If you have a question or a support request, please open a new discussion on [GitHub Discussions](https://github.com/spring-projects/spring-batch/discussions)
14-
or ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/spring-batch).
13+
If you have a question or a support request, please open a new discussion on [GitHub Discussions](https://github.com/spring-projects-experimental/spring-ai/discussions)
14+
or ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/spring-ai).
1515

16-
Please do **not** create issues on the [Issue Tracker](https://github.com/spring-projects/spring-batch/issues) for questions or support requests.
16+
Please do **not** create issues on the [Issue Tracker](https://github.com/spring-projects/spring-ai/issues) for questions or support requests.
1717
We would like to keep the issue tracker **exclusively** for bug reports and feature requests.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,3 @@ You might have already read the [contributor guide][1], but as a reminder, pleas
55
* Rebase your changes on the latest `main` branch and squash your commits
66
* Add/Update unit tests as needed
77
* Run a build and make sure all tests pass prior to submission
8-
9-
For more details, please check the [contributor guide][1].
10-
Thank you upfront!
11-
12-
[1]: https://github.com/spring-projects/spring-batch/blob/main/CONTRIBUTING.md

.github/workflows/maven-central-release.yml

Lines changed: 32 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -17,51 +17,50 @@ jobs:
1717

1818
- name: Prepare directory structure
1919
run: |
20-
mkdir -p nexus/org/springframework/batch/spring-batch-bom/$RELEASE_VERSION
21-
mkdir -p nexus/org/springframework/batch/spring-batch-infrastructure/$RELEASE_VERSION
22-
mkdir -p nexus/org/springframework/batch/spring-batch-core/$RELEASE_VERSION
23-
mkdir -p nexus/org/springframework/batch/spring-batch-test/$RELEASE_VERSION
24-
mkdir -p nexus/org/springframework/batch/spring-batch-integration/$RELEASE_VERSION
20+
mkdir -p nexus/org/springframework/ai/spring-ai-core/$RELEASE_VERSION
21+
mkdir -p nexus/org/springframework/batch/spring-ai-openai/$RELEASE_VERSION
22+
mkdir -p nexus/org/springframework/batch/spring-ai-azure-openai/$RELEASE_VERSION
23+
mkdir -p nexus/org/springframework/batch/spring-ai-spring-boot-autoconfigure/$RELEASE_VERSION
2524
2625
- name: Download release files from Artifactory
2726
env:
28-
ARTIFACTORY_URL: "https://repo.spring.io/libs-staging-local/org/springframework/batch"
27+
ARTIFACTORY_URL: "https://repo.spring.io/libs-staging-local/org/springframework/ai"
2928
run: |
30-
echo "Downloading BOM artifacts"
31-
cd nexus/org/springframework/batch/spring-batch-bom/$RELEASE_VERSION
32-
wget $ARTIFACTORY_URL/spring-batch-bom/$RELEASE_VERSION/spring-batch-bom-$RELEASE_VERSION.pom
29+
# echo "Downloading BOM artifacts"
30+
# cd nexus/org/springframework/batch/spring-ai-bom/$RELEASE_VERSION
31+
# wget $ARTIFACTORY_URL/spring-ai-bom/$RELEASE_VERSION/spring-ai-bom-$RELEASE_VERSION.pom
3332

34-
echo "Downloading infrastructure artifacts"
33+
echo "Downloading core artifacts"
3534
cd ../../../../../..
36-
cd nexus/org/springframework/batch/spring-batch-infrastructure/$RELEASE_VERSION
37-
wget $ARTIFACTORY_URL/spring-batch-infrastructure/$RELEASE_VERSION/spring-batch-infrastructure-$RELEASE_VERSION.pom
38-
wget $ARTIFACTORY_URL/spring-batch-infrastructure/$RELEASE_VERSION/spring-batch-infrastructure-$RELEASE_VERSION.jar
39-
wget $ARTIFACTORY_URL/spring-batch-infrastructure/$RELEASE_VERSION/spring-batch-infrastructure-$RELEASE_VERSION-javadoc.jar
40-
wget $ARTIFACTORY_URL/spring-batch-infrastructure/$RELEASE_VERSION/spring-batch-infrastructure-$RELEASE_VERSION-sources.jar
35+
cd nexus/org/springframework/ai/spring-ai-core/$RELEASE_VERSION
36+
wget $ARTIFACTORY_URL/spring-ai-core/$RELEASE_VERSION/spring-ai-core-$RELEASE_VERSION.pom
37+
wget $ARTIFACTORY_URL/spring-ai-core/$RELEASE_VERSION/spring-ai-core-$RELEASE_VERSION.jar
38+
wget $ARTIFACTORY_URL/spring-ai-core/$RELEASE_VERSION/spring-ai-core-$RELEASE_VERSION-javadoc.jar
39+
wget $ARTIFACTORY_URL/spring-ai-core/$RELEASE_VERSION/spring-ai-core-$RELEASE_VERSION-sources.jar
4140

42-
echo "Downloading core artifacts"
41+
echo "Downloading openai artifacts"
4342
cd ../../../../../..
44-
cd nexus/org/springframework/batch/spring-batch-core/$RELEASE_VERSION
45-
wget $ARTIFACTORY_URL/spring-batch-core/$RELEASE_VERSION/spring-batch-core-$RELEASE_VERSION.pom
46-
wget $ARTIFACTORY_URL/spring-batch-core/$RELEASE_VERSION/spring-batch-core-$RELEASE_VERSION.jar
47-
wget $ARTIFACTORY_URL/spring-batch-core/$RELEASE_VERSION/spring-batch-core-$RELEASE_VERSION-javadoc.jar
48-
wget $ARTIFACTORY_URL/spring-batch-core/$RELEASE_VERSION/spring-batch-core-$RELEASE_VERSION-sources.jar
43+
cd nexus/org/springframework/batch/spring-ai-openai/$RELEASE_VERSION
44+
wget $ARTIFACTORY_URL/spring-ai-openai/$RELEASE_VERSION/spring-ai-openai-$RELEASE_VERSION.pom
45+
wget $ARTIFACTORY_URL/spring-ai-openai/$RELEASE_VERSION/spring-ai-openai-$RELEASE_VERSION.jar
46+
wget $ARTIFACTORY_URL/spring-ai-openai/$RELEASE_VERSION/spring-ai-openai-$RELEASE_VERSION-javadoc.jar
47+
wget $ARTIFACTORY_URL/spring-ai-openai/$RELEASE_VERSION/spring-ai-openai-$RELEASE_VERSION-sources.jar
4948

50-
echo "Downloading test artifacts"
49+
echo "Downloading azure openai artifacts"
5150
cd ../../../../../..
52-
cd nexus/org/springframework/batch/spring-batch-test/$RELEASE_VERSION
53-
wget $ARTIFACTORY_URL/spring-batch-test/$RELEASE_VERSION/spring-batch-test-$RELEASE_VERSION.pom
54-
wget $ARTIFACTORY_URL/spring-batch-test/$RELEASE_VERSION/spring-batch-test-$RELEASE_VERSION.jar
55-
wget $ARTIFACTORY_URL/spring-batch-test/$RELEASE_VERSION/spring-batch-test-$RELEASE_VERSION-javadoc.jar
56-
wget $ARTIFACTORY_URL/spring-batch-test/$RELEASE_VERSION/spring-batch-test-$RELEASE_VERSION-sources.jar
51+
cd nexus/org/springframework/batch/spring-ai-azure-openai/$RELEASE_VERSION
52+
wget $ARTIFACTORY_URL/spring-ai-azure-openai/$RELEASE_VERSION/spring-ai-azure-openai-$RELEASE_VERSION.pom
53+
wget $ARTIFACTORY_URL/spring-ai-azure-openai/$RELEASE_VERSION/spring-ai-azure-openai-$RELEASE_VERSION.jar
54+
wget $ARTIFACTORY_URL/spring-ai-azure-openai/$RELEASE_VERSION/spring-ai-azure-openai-$RELEASE_VERSION-javadoc.jar
55+
wget $ARTIFACTORY_URL/spring-ai-azure-openai/$RELEASE_VERSION/spring-ai-azure-openai-$RELEASE_VERSION-sources.jar
5756

58-
echo "Downloading integration artifacts"
57+
echo "Downloading autoconfiguration artifacts"
5958
cd ../../../../../..
60-
cd nexus/org/springframework/batch/spring-batch-integration/$RELEASE_VERSION
61-
wget $ARTIFACTORY_URL/spring-batch-integration/$RELEASE_VERSION/spring-batch-integration-$RELEASE_VERSION.pom
62-
wget $ARTIFACTORY_URL/spring-batch-integration/$RELEASE_VERSION/spring-batch-integration-$RELEASE_VERSION.jar
63-
wget $ARTIFACTORY_URL/spring-batch-integration/$RELEASE_VERSION/spring-batch-integration-$RELEASE_VERSION-javadoc.jar
64-
wget $ARTIFACTORY_URL/spring-batch-integration/$RELEASE_VERSION/spring-batch-integration-$RELEASE_VERSION-sources.jar
59+
cd nexus/org/springframework/batch/spring-ai-spring-boot-autoconfigure/$RELEASE_VERSION
60+
wget $ARTIFACTORY_URL/spring-ai-spring-boot-autoconfigure/$RELEASE_VERSION/spring-ai-spring-boot-autoconfigure-$RELEASE_VERSION.pom
61+
wget $ARTIFACTORY_URL/spring-ai-spring-boot-autoconfigure/$RELEASE_VERSION/spring-ai-spring-boot-autoconfigure-$RELEASE_VERSION.jar
62+
wget $ARTIFACTORY_URL/spring-ai-spring-boot-autoconfigure/$RELEASE_VERSION/spring-ai-spring-boot-autoconfigure-$RELEASE_VERSION-javadoc.jar
63+
wget $ARTIFACTORY_URL/spring-ai-spring-boot-autoconfigure/$RELEASE_VERSION/spring-ai-spring-boot-autoconfigure-$RELEASE_VERSION-sources.jar
6564

6665
- name: Sign artifacts and release them to Maven Central
6766
uses: jvalkeal/nexus-sync@v0

0 commit comments

Comments
 (0)