<?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>io.kokuwa.maven</groupId>
  <artifactId>esh-constants-maven-plugin</artifactId>
  <version>0.2.0</version>
  <packaging>maven-plugin</packaging>
  <name>Eclipse Smarthome Constants generator Maven Plugin</name>
  <description>This Maven plugin generates a Java constant class based on the ESH-INF folders XML content</description>
  <url>https://github.com/kokowaio/esh-constants-maven-plugin</url>
  <licenses>
    <license>
      <name>Apache-2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>fabian-schlegel</id>
      <name>Fabian Schlegel</name>
      <email>fabian.schlegel@grayc.de</email>
      <url>https://github.com/fabian-schlegel</url>
      <organization>GrayC GmbH</organization>
      <organizationUrl>https://grayc.de</organizationUrl>
      <roles>
        <role>Lead Developer</role>
      </roles>
      <timezone>Europe/Berlin</timezone>
    </developer>
    <developer>
      <id>sschnabe</id>
      <name>Stephan Schnabel</name>
      <email>stephan@grayc.de</email>
      <url>https://github.com/sschnabe</url>
      <organization>GrayC GmbH</organization>
      <organizationUrl>https://grayc.de</organizationUrl>
      <roles>
        <role>Developer</role>
      </roles>
      <timezone>Europe/Berlin</timezone>
    </developer>
  </developers>
  <prerequisites>
    <maven>3.2.5</maven>
  </prerequisites>
  <scm>
    <connection>scm:git:https://github.com/kokuwaio/esh-constants-maven-plugin.git</connection>
    <developerConnection>scm:git:https://github.com/kokuwaio/esh-constants-maven-plugin.git</developerConnection>
    <tag>0.2.0</tag>
    <url>https://github.com/kokuwaio/esh-constants-maven-plugin</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-api</artifactId>
      <version>3.2.5</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-utils</artifactId>
        </exclusion>
        <exclusion>
          <groupId>org.eclipse.sisu</groupId>
          <artifactId>org.eclipse.sisu.plexus</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.maven.plugin-tools</groupId>
      <artifactId>maven-plugin-annotations</artifactId>
      <version>3.9.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.squareup</groupId>
      <artifactId>javapoet</artifactId>
      <version>1.13.0</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>
