Repository: incubator-ignite Updated Branches: refs/heads/ignite-57 2d4866d5b -> ed55c48a3
Ignite-111 Initial Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/f18a30d7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/f18a30d7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/f18a30d7 Branch: refs/heads/ignite-57 Commit: f18a30d70eeb87113dbe20dd3ded112c1b3e3939 Parents: 4da5e29 Author: avinogradov <avinogra...@gridgain.com> Authored: Fri Jan 30 14:23:18 2015 +0300 Committer: avinogradov <avinogra...@gridgain.com> Committed: Fri Jan 30 14:23:18 2015 +0300 ---------------------------------------------------------------------- pom.xml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/f18a30d7/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 46ae20d..3a0ae7a 100644 --- a/pom.xml +++ b/pom.xml @@ -1275,6 +1275,33 @@ </execution> </executions> </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>license-maven-plugin</artifactId> + <version>1.8</version> + <configuration> + <inceptionYear>2014</inceptionYear> + <organizationName>Apache</organizationName> + <projectName>Ignite</projectName> + <licenseName>apache_v2</licenseName> + <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> + <failOnMissingHeader>true</failOnMissingHeader> + <failOnNotUptodateHeader>true</failOnNotUptodateHeader> + <roots> + <root>src/main/java</root> + <root>src/test/java</root> + </roots> + </configuration> + <executions> + <execution> + <phase>validate</phase> + <goals> + <goal>check-file-header</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> </profile>