Skip to content

Commit 73b3c96

Browse files
committed
Change base package from org.springframework.batch.experimental to org.springframework.experimental.batch
1 parent 131c1af commit 73b3c96

File tree

5 files changed

+22
-7
lines changed

5 files changed

+22
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public Step chunkOrientedStep(JobRepository jobRepository, JdbcTransactionManage
8989

9090
The first two parameters are the step name and chunk size. Other parameters are self explanatory.
9191
Once defined, this step can then be added to a Spring Batch job flow like any other step type.
92-
You can find a complete example in the [ChunkOrientedStepIntegrationTests](./src/test/java/org/springframework/batch/experimental/core/step/item/ChunkOrientedStepIntegrationTests.java) file.
92+
You can find a complete example in the [ChunkOrientedStepIntegrationTests](./src/test/java/org/springframework/experimental/batch/core/step/item/ChunkOrientedStepIntegrationTests.java) file.
9393

9494
# Contribute
9595

src/main/java/org/springframework/batch/experimental/core/step/item/ChunkListener.java renamed to src/main/java/org/springframework/experimental/batch/core/step/item/ChunkListener.java

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
package org.springframework.batch.experimental.core.step.item;
1+
/*
2+
* Copyright 2023-2025 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.springframework.experimental.batch.core.step.item;
217

318
import org.springframework.batch.core.StepListener;
419
import org.springframework.batch.item.Chunk;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 the original author or authors.
2+
* Copyright 2023-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.batch.experimental.core.step.item;
16+
package org.springframework.experimental.batch.core.step.item;
1717

1818
import org.apache.commons.logging.Log;
1919
import org.apache.commons.logging.LogFactory;

src/main/java/org/springframework/batch/experimental/package-info.java renamed to src/main/java/org/springframework/experimental/batch/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
* This package contains experimental features. Those features are
33
* not intended to be used in production.
44
*/
5-
package org.springframework.batch.experimental;
5+
package org.springframework.experimental.batch;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023-2024 the original author or authors.
2+
* Copyright 2023-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.batch.experimental.core.step.item;
16+
package org.springframework.experimental.batch.core.step.item;
1717

1818
import javax.sql.DataSource;
1919

0 commit comments

Comments
 (0)