<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.wicketstuff</groupId>
    <artifactId>wicketstuff-core</artifactId>
    <version>7.15.0</version>
  </parent>

  <artifactId>wicketstuff-serializer-common</artifactId>

  <name>WicketStuff Common Serializer</name>
  <description>common serializer functionality</description>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.eclipse.jetty.aggregate</groupId>
      <artifactId>jetty-all-server</artifactId>
    </dependency>
  </dependencies>

	<build>
		<plugins>
			<plugin>
				<!-- USAGE: mvn license:check OR mvn license:format -->
				<groupId>com.mycila.maven-license-plugin</groupId>
				<artifactId>maven-license-plugin</artifactId>
				<configuration>
					<header>${header.location}</header>
					<excludes>
						<exclude>src/test/java/**.tree</exclude>
					</excludes>
				</configuration>
			</plugin>
		</plugins>
	</build>

	<properties>
		<header.location>lic/header.txt</header.location>
	</properties>
</project>
