Skip to content

Commit 3fe11bb

Browse files
committed
license header updated using maven plugin
Signed-off-by: Andrea Cioni <[email protected]>
1 parent e3f3ce1 commit 3fe11bb

24 files changed

+64
-26
lines changed

spring-batch-s3/pom.xml

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
~ Copyright 2006-2025 the original author or authors.
3+
~ Copyright 2025 the original author or authors.
44
~
55
~ Licensed under the Apache License, Version 2.0 (the "License");
66
~ you may not use this file except in compliance with the License.
@@ -219,6 +219,45 @@
219219
<groupId>org.codehaus.mojo</groupId>
220220
<version>1.6.0</version>
221221
</plugin>
222+
<plugin>
223+
<groupId>com.mycila</groupId>
224+
<artifactId>license-maven-plugin</artifactId>
225+
<version>4.6</version>
226+
<configuration>
227+
<licenseSets>
228+
<licenseSet>
229+
<inlineHeader><![CDATA[
230+
Copyright ${year} the original author or authors.
231+
232+
Licensed under the Apache License, Version 2.0 (the "License");
233+
you may not use this file except in compliance with the License.
234+
You may obtain a copy of the License at
235+
236+
https://www.apache.org/licenses/LICENSE-2.0
237+
238+
Unless required by applicable law or agreed to in writing, software
239+
distributed under the License is distributed on an "AS IS" BASIS,
240+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
241+
See the License for the specific language governing permissions and
242+
limitations under the License.
243+
]]></inlineHeader>
244+
<includes>
245+
<include>src/**/*.java</include>
246+
</includes>
247+
</licenseSet>
248+
</licenseSets>
249+
<properties>
250+
<year>2025</year>
251+
</properties>
252+
</configuration>
253+
<executions>
254+
<execution>
255+
<goals>
256+
<goal>check</goal>
257+
</goals>
258+
</execution>
259+
</executions>
260+
</plugin>
222261
</plugins>
223262
</build>
224263
</project>

spring-batch-s3/src/main/java/org/springframework/batch/extensions/s3/S3ItemReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2006-2022 the original author or authors.
2+
* Copyright 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.

spring-batch-s3/src/main/java/org/springframework/batch/extensions/s3/S3ItemWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2006-2022 the original author or authors.
2+
* Copyright 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.

spring-batch-s3/src/main/java/org/springframework/batch/extensions/s3/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2006-2022 the original author or authors.
2+
* Copyright 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.

spring-batch-s3/src/main/java/org/springframework/batch/extensions/s3/serializer/S3Deserializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2006-2022 the original author or authors.
2+
* Copyright 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.

spring-batch-s3/src/main/java/org/springframework/batch/extensions/s3/serializer/S3Serializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2006-2022 the original author or authors.
2+
* Copyright 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.

spring-batch-s3/src/main/java/org/springframework/batch/extensions/s3/serializer/S3StringDeserializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2006-2022 the original author or authors.
2+
* Copyright 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.

spring-batch-s3/src/main/java/org/springframework/batch/extensions/s3/serializer/S3StringSerializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2006-2022 the original author or authors.
2+
* Copyright 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.

spring-batch-s3/src/main/java/org/springframework/batch/extensions/s3/serializer/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2006-2022 the original author or authors.
2+
* Copyright 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.

spring-batch-s3/src/main/java/org/springframework/batch/extensions/s3/stream/Defaults.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2006-2022 the original author or authors.
2+
* Copyright 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.
@@ -14,7 +14,6 @@
1414
* limitations under the License.
1515
*/
1616

17-
1817
package org.springframework.batch.extensions.s3.stream;
1918

2019
final class Defaults {

0 commit comments

Comments
 (0)