<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.github.codemonstur</groupId>
  <artifactId>htmlcompiler</artifactId>
  <version>5.7.3</version>
  <packaging>maven-plugin</packaging>
  <name>htmlcompiler</name>
  <description>An HTML compiler, with maven plugin</description>
  <url>https://github.com/codemonstur/htmlcompiler</url>
  <licenses>
    <license>
      <name>MIT</name>
      <url>https://opensource.org/licenses/MIT</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Jurgen Voorneveld</name>
      <email>jegvoorneveld@gmail.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:https://github.com/codemonstur/htmlcompiler.git</connection>
    <developerConnection>scm:git:https://github.com/codemonstur/htmlcompiler.git</developerConnection>
    <url>https://github.com/codemonstur/htmlcompiler</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.jsoup</groupId>
      <artifactId>jsoup</artifactId>
      <version>1.17.2</version>
    </dependency>
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <version>2.10.1</version>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.15.1</version>
    </dependency>
    <dependency>
      <groupId>io.pebbletemplates</groupId>
      <artifactId>pebble</artifactId>
      <version>3.2.2</version>
    </dependency>
    <dependency>
      <groupId>com.github.hazendaz</groupId>
      <artifactId>htmlcompressor</artifactId>
      <version>2.0.0</version>
    </dependency>
    <dependency>
      <groupId>com.yahoo.platform.yui</groupId>
      <artifactId>yuicompressor</artifactId>
      <version>2.4.8</version>
    </dependency>
    <dependency>
      <groupId>com.google.javascript</groupId>
      <artifactId>closure-compiler</artifactId>
      <version>v20231112</version>
    </dependency>
    <dependency>
      <groupId>de.inetsoftware</groupId>
      <artifactId>jlessc</artifactId>
      <version>1.11</version>
    </dependency>
    <dependency>
      <groupId>com.vaadin</groupId>
      <artifactId>vaadin-sass-compiler</artifactId>
      <version>0.9.13</version>
    </dependency>
    <dependency>
      <groupId>de.neuland-bfi</groupId>
      <artifactId>jade4j</artifactId>
      <version>1.3.2</version>
    </dependency>
    <dependency>
      <groupId>de.neuland-bfi</groupId>
      <artifactId>pug4j</artifactId>
      <version>2.2.0</version>
    </dependency>
    <dependency>
      <groupId>com.github.codemonstur</groupId>
      <artifactId>simplexml</artifactId>
      <version>3.1.0</version>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-api</artifactId>
      <version>3.8.6</version>
      <scope>provided</scope>
    </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>org.apache.maven</groupId>
      <artifactId>maven-project</artifactId>
      <version>3.0-alpha-2</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>
