<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<artifactId>butor-spring</artifactId>
	<packaging>jar</packaging>

	<parent>
		<groupId>com.butor</groupId>
		<artifactId>butor-fw-core-parent</artifactId>
		<version>1.0.29</version>
	</parent>

	<name>Butor Framework Core - Spring Module</name>
	<description>This project contains some Spring related utilities</description>
	<url>http://www.butor.com</url>

	<!-- overriding parent copyright notice plugin settings -->
	<build>
		<plugins>
			<plugin>
				<groupId>com.mycila</groupId>
				<artifactId>license-maven-plugin</artifactId>
				<version>2.11</version>
				<configuration>
					<basedir>${basedir}</basedir>
					<headerDefinitions>
						<!-- <headerDefinition>jsonHeaderDef.xml</headerDefinition> -->
					</headerDefinitions>
					<mapping>
						<!-- TODO not working for .json -->
						<json>SLASHSTAR_STYLE</json>
					</mapping>
					<useDefaultMapping>true</useDefaultMapping>
					<header>license.txt</header>
					<properties>
						<owner>Butor Inc.</owner>
						<email>info@butor.com</email>
					</properties>
					<includes>
						<include>src/main/java/**</include>
						<include>src/main/webapp/**</include>
						<include>src/main/resources/**</include>
						<include>src/test/java/**</include>
					</includes>
					<excludes>
						<exclude>pom.xml</exclude>
						<exclude>README</exclude>
						<exclude>**/README</exclude>
						<exclude>license.txt</exclude>
						<exclude>LICENSE-2.0.txt</exclude>
					</excludes>
				</configuration>
				<executions>
					<execution>
						<goals>
							<goal>format</goal>
						</goals>
						<phase>process-sources</phase>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

	<dependencies>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-context</artifactId>
			<version>${spring.release}</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>${slf4j.release}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-test</artifactId>
			<version>${spring.release}</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

</project>
