<?xml version="1.0" encoding="UTF-8"?>
<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">
  <parent>
    <artifactId>jonas-report</artifactId>
    <groupId>org.ow2.jonas</groupId>
    <version>5.3.0</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.ow2.jonas</groupId>
  <artifactId>jonas-report-api</artifactId>
  <packaging>bundle</packaging>
  <name>JOnAS :: Services :: JOnAS report :: Api</name>

  <build>
    <plugins>
      <plugin>
        <groupId>org.jvnet.jaxb2.maven2</groupId>
        <artifactId>maven-jaxb2-plugin</artifactId>
        <executions>
          <execution>
            <id>xsd-unmarshalling</id>
            <goals>
              <goal>generate</goal>
            </goals>
            <configuration>
              <generateDirectory>${project.build.directory}/generated-sources/jaxb</generateDirectory>
              <schemaDirectory>src/main/resources/xsd</schemaDirectory>
              <generatePackage>org.ow2.jonas.report.generated</generatePackage>
              <strict>true</strict>
              <verbose>true</verbose>
              <extension>true</extension>
              <removeOldOutput>false</removeOldOutput>
              <forceRegenerate>true</forceRegenerate>
              <addCompileSourceRoot>true</addCompileSourceRoot>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>