<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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>
  <groupId>cat.inspiracio</groupId>
  <artifactId>orange-maven-plugin</artifactId>
  <version>0.0.9</version>
  <packaging>maven-plugin</packaging>
  <name>Orange Servlet Maven Plugin</name>
  <description>Orange-maven-plugin builds template files for use with orange-servlet.

Orange Servlet provides HTML templating with server-side Java.

See https://bitbucket.org/bunkenburg/orange-servlet.</description>
  <url>http://www.inspiracio.cat/orange-maven-plugin</url>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Alexander Bunkenburg</name>
      <email>alex@inspiracio.cat</email>
      <organization>inspiració.cat</organization>
      <organizationUrl>https://www.inspiracio.cat</organizationUrl>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git@bitbucket.org:bunkenburg/orange-servlet.git/orange-maven-plugin</connection>
    <developerConnection>scm:git:git@bitbucket.org:bunkenburg/orange-servlet.git/orange-maven-plugin</developerConnection>
    <url>https://bitbucket.org/bunkenburg/orange-servlet/orange-maven-plugin</url>
  </scm>
  <distributionManagement>
    <snapshotRepository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
  </distributionManagement>
  <dependencies>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-api</artifactId>
      <version>3.8.2</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven.plugin-tools</groupId>
      <artifactId>maven-plugin-tools-api</artifactId>
      <version>3.6.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven.plugin-tools</groupId>
      <artifactId>maven-plugin-annotations</artifactId>
      <version>3.6.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>cat.inspiracio</groupId>
      <artifactId>orange-servlet</artifactId>
      <version>0.0.9</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>cat.inspiracio</groupId>
      <artifactId>html-parser</artifactId>
      <version>0.0.5</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.sonatype.plugins</groupId>
        <artifactId>nexus-staging-maven-plugin</artifactId>
        <version>1.6.8</version>
        <extensions>true</extensions>
      </plugin>
    </plugins>
  </build>
</project>
