<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>
  <groupId>com.zaubersoftware</groupId>
  <artifactId>commons-ws</artifactId>
  <version>1.1</version>
        <description>Classes for simple usage of ws-security</description>
  <parent>
    <artifactId>bare</artifactId>
    <groupId>com.zaubersoftware.maven.poms</groupId>
    <version>1.0.11</version>
  </parent>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
          <encoding>ISO-8859-1</encoding>
        </configuration>
      </plugin>
      <plugin>
        <groupId>com.mycila.maven-license-plugin</groupId>
        <artifactId>maven-license-plugin</artifactId>
        <version>1.9.0</version>
        <configuration>
          <header>HEADER.txt</header>
          <includes>
            <include>**/*.java</include>
          </includes>
          <excludes>
            <exclude>target/**</exclude>
            <exclude>.gitignore</exclude>
            <exclude>**/*.txt</exclude>
          </excludes>
          <encoding>iso-8859-1</encoding>
          <strictCheck>true</strictCheck>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>check</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.apache.cxf</groupId>
      <artifactId>cxf-rt-frontend-jaxws</artifactId>
      <version>2.3.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
	<groupId>net.sf.staccatocommons</groupId>
	<artifactId>staccatissimo-dynamic</artifactId>
	<version>2.2</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
	<groupId>org.mockito</groupId>
	<artifactId>mockito-core</artifactId>
	<version>1.9.0</version>
    </dependency>
  </dependencies>
</project>
