Skip to content

Commit 7b61395

Browse files
committed
iluwatar#358 Add Plugin for Auto License
1 parent b6beffe commit 7b61395

1 file changed

Lines changed: 34 additions & 8 deletions

File tree

pom.xml

Lines changed: 34 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,24 @@
88
<version>1.10.0-SNAPSHOT</version>
99
<packaging>pom</packaging>
1010

11+
<inceptionYear>2014</inceptionYear>
12+
1113
<properties>
1214
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1315
<hibernate.version>5.0.1.Final</hibernate.version>
14-
<spring.version>4.1.7.RELEASE</spring.version>
15-
<spring-data.version>1.9.0.RELEASE</spring-data.version>
16-
<h2.version>1.4.188</h2.version>
16+
<spring.version>4.2.4.RELEASE</spring.version>
17+
<spring-data.version>1.9.2.RELEASE</spring-data.version>
18+
<h2.version>1.4.190</h2.version>
1719
<junit.version>4.12</junit.version>
1820
<compiler.version>3.0</compiler.version>
1921
<coveralls.version>4.0.0</coveralls.version>
2022
<jacoco.version>0.7.2.201409121644</jacoco.version>
2123
<commons-dbcp.version>1.4</commons-dbcp.version>
22-
<camel.version>2.15.3</camel.version>
24+
<camel.version>2.16.1</camel.version>
2325
<log4j.version>1.2.17</log4j.version>
24-
<guava.version>18.0</guava.version>
25-
<systemrules.version>1.14.0</systemrules.version>
26+
<guava.version>19.0</guava.version>
27+
<systemrules.version>1.15.1</systemrules.version>
28+
<mockito.version>1.10.19</mockito.version>
2629
</properties>
2730
<modules>
2831
<module>abstract-factory</module>
@@ -61,6 +64,7 @@
6164
<module>intercepting-filter</module>
6265
<module>producer-consumer</module>
6366
<module>poison-pill</module>
67+
<module>reader-writer-lock</module>
6468
<module>lazy-loading</module>
6569
<module>service-layer</module>
6670
<module>specification</module>
@@ -144,7 +148,7 @@
144148
<dependency>
145149
<groupId>org.mockito</groupId>
146150
<artifactId>mockito-core</artifactId>
147-
<version>1.10.19</version>
151+
<version>${mockito.version}</version>
148152
<scope>test</scope>
149153
</dependency>
150154
<dependency>
@@ -326,7 +330,29 @@
326330
</configuration>
327331
</execution>
328332
</executions>
329-
</plugin>
333+
</plugin>
334+
335+
<plugin>
336+
<groupId>com.mycila</groupId>
337+
<artifactId>license-maven-plugin</artifactId>
338+
<version>2.11</version>
339+
<configuration>
340+
<header>com/mycila/maven/plugin/license/templates/MIT.txt</header>
341+
<properties>
342+
<owner>Ilkka Seppälä</owner>
343+
</properties>
344+
<skipExistingHeaders>true</skipExistingHeaders>
345+
</configuration>
346+
<executions>
347+
<execution>
348+
<id>install-format</id>
349+
<phase>install</phase>
350+
<goals>
351+
<goal>format</goal>
352+
</goals>
353+
</execution>
354+
</executions>
355+
</plugin>
330356
</plugins>
331357
</build>
332358

0 commit comments

Comments
 (0)