<?xml version="1.0"?>
<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.sebersole.jaxb2-basics</groupId>
    <artifactId>jaxb2-basics-project</artifactId>
    <version>0.12.0</version>
  </parent>
  <groupId>com.github.sebersole.jaxb2-basics</groupId>
  <artifactId>jaxb2-basics-ant</artifactId>
  <version>0.12.0</version>
  <name>JAXB2 Basics - Ant Task</name>
  <description>Useful plugins and tools for JAXB2.</description>
  <url>https://github.com/sebersole/jaxb2-basics</url>
  <inceptionYear>2021</inceptionYear>
  <licenses>
    <license>
      <name>BSD 2-Clause "Simplified" License</name>
      <url>https://api.github.com/licenses/bsd-2-clause</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>sebersole</id>
      <name>Steve Ebersole</name>
      <email>steve@hibernate.org</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git://github.com/sebersole/jaxb2-basics.git</connection>
    <developerConnection>scm:git://github.com/sebersole/jaxb2-basics.git</developerConnection>
    <url>git://github.com/sebersole/jaxb2-basics.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.glassfish.jaxb</groupId>
      <artifactId>jaxb-xjc</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.sun.activation</groupId>
      <artifactId>javax.activation</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.ant</groupId>
      <artifactId>ant</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.ant</groupId>
      <artifactId>ant-launcher</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <defaultGoal>install</defaultGoal>
  </build>
</project>
