[DS-247] License Cleanup in solrstatistics.

This commit is contained in:
Mark Diggory
2009-10-06 19:48:36 +00:00
parent be93878df3
commit 0cd02aeaa6
2 changed files with 36 additions and 1 deletions

27
pom.xml
View File

@@ -68,7 +68,7 @@
<parent>
<artifactId>dspace-pom</artifactId>
<groupId>org.dspace</groupId>
<version>1</version>
<version>2</version>
</parent>
<developers>
@@ -207,6 +207,31 @@
</executions>
</plugin>
<plugin>
<groupId>com.google.code.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.4.0</version>
<configuration>
<header>http://scm.dspace.org/svn/repo/licenses/LICENSE_HEADER</header>
<excludes>
<exclude>src/main/webapp/**</exclude>
<exclude>target/**</exclude>
<exclude>m2-target/**</exclude>
<exclude>**/*.properties</exclude>
</excludes>
<properties />
<encoding>UTF-8</encoding>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

View File

@@ -1,3 +1,13 @@
/**
* $Id: $
* $URL: $
* *************************************************************************
* Copyright (c) 2002-2009, DuraSpace. All rights reserved
* Licensed under the DuraSpace Foundation License.
*
* A copy of the DuraSpace License has been included in this
* distribution and is available at: http://scm.dspace.org/svn/repo/licenses/LICENSE.txt
*/
package org.dspace.solr.filters;
import java.io.IOException;