Skip to content

Commit 4e46c77

Browse files
committed
Added license header plugin
1 parent c3eab0d commit 4e46c77

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<artifactId>spring-data-dynamodb</artifactId>
66
<version>5.0.2-SNAPSHOT</version>
77
<name>Spring Data DynamoDB</name>
8+
<inceptionYear>2013</inceptionYear>
9+
810
<description>The primary goal of the Spring® Data project is to make it easier to build Spring-powered applications
911
that use data access technologies.
1012
This module deals with enhanced support for a data access layer built on AWS DynamoDB.</description>
@@ -199,6 +201,29 @@
199201
</plugins>
200202
</pluginManagement>
201203
<plugins>
204+
<plugin>
205+
<groupId>com.mycila</groupId>
206+
<artifactId>license-maven-plugin</artifactId>
207+
<version>3.0</version>
208+
<configuration>
209+
<header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</header>
210+
<excludes>
211+
<exclude>**/README.md</exclude>
212+
<exclude>**/DONATION.md</exclude>
213+
<exclude>**/CONTRIBUTING.md</exclude>
214+
<exclude>**/LICENSE</exclude>
215+
<exclude>src/test/resources/**</exclude>
216+
<exclude>src/main/resources/**</exclude>
217+
</excludes>
218+
</configuration>
219+
<executions>
220+
<execution>
221+
<goals>
222+
<goal>check</goal>
223+
</goals>
224+
</execution>
225+
</executions>
226+
</plugin>
202227
<plugin>
203228
<groupId>org.sonatype.plugins</groupId>
204229
<artifactId>nexus-staging-maven-plugin</artifactId>

0 commit comments

Comments
 (0)