<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.github.mmoayyed.ws-wss4j</groupId>
    <artifactId>wss4j-parent</artifactId>
    <version>4.0.0</version>
    <relativePath>../parent/pom.xml</relativePath>
  </parent>
  <groupId>com.github.mmoayyed.ws-wss4j</groupId>
  <artifactId>wss4j-ws-security-stax</artifactId>
  <version>4.0.0</version>
  <name>Apache WSS4J Streaming WS-Security</name>
  <properties>
    <wss4j.module.name>org.apache.wss4j.stax</wss4j.module.name>
    <wss4j.osgi.import>javax.xml.bind*;version=!</wss4j.osgi.import>
  </properties>
  <dependencies>
    <dependency>
      <groupId>com.github.mmoayyed.ws-wss4j</groupId>
      <artifactId>wss4j-bindings</artifactId>
      <version>4.0.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.github.mmoayyed.ws-wss4j</groupId>
      <artifactId>wss4j-ws-security-common</artifactId>
      <version>4.0.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.ehcache</groupId>
      <artifactId>ehcache</artifactId>
      <classifier>jakarta</classifier>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.github.mmoayyed.ws-wss4j</groupId>
      <artifactId>wss4j-ws-security-dom</artifactId>
      <version>4.0.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.github.mmoayyed.ws-wss4j</groupId>
      <artifactId>wss4j-ws-security-common</artifactId>
      <version>4.0.0</version>
      <classifier>tests</classifier>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.github.mmoayyed.ws-wss4j</groupId>
      <artifactId>wss4j-ws-security-dom</artifactId>
      <version>4.0.0</version>
      <classifier>tests</classifier>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-compress</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.tukaani</groupId>
      <artifactId>xz</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-reload4j</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-params</artifactId>
      <version>${junit.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.bouncycastle</groupId>
      <artifactId>bcprov-jdk15on</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.glassfish.jaxb</groupId>
      <artifactId>jaxb-runtime</artifactId>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.sun.xml.messaging.saaj</groupId>
      <artifactId>saaj-impl</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <inherited>true</inherited>
        <configuration>
          <groups>${test.groups}</groups>
          <systemPropertyVariables>
            <log4j.configuration>log4j-wss.xml</log4j.configuration>
          </systemPropertyVariables>
          <reuseForks>false</reuseForks>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
