<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <!-- This module was also published with a richer model, Gradle metadata,  -->
  <!-- which should be used instead. Do not delete the following line which  -->
  <!-- is to indicate to Gradle or any Gradle module metadata file consumer  -->
  <!-- that they should prefer consuming it instead. -->
  <!-- do_not_remove: published-with-gradle-metadata -->
  <modelVersion>4.0.0</modelVersion>
  <groupId>io.github.pereduromega</groupId>
  <artifactId>GradleNpmPlugin</artifactId>
  <version>1.4.1-beta3</version>
  <name>npm.plugin</name>
  <description>Simple way to use npm scripts from gradle with scripts defined in package.json being auto-extracted as gradle tasks</description>
  <url>github.com/PeredurOmega/GradleNpmPlugin</url>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>https://opensource.org/licenses/MIT</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>PeredurOmega</id>
      <name>Paul Souteyrat</name>
      <email>paul.souteyrat@insa-lyon.fr</email>
    </developer>
  </developers>
  <scm>
    <url>github.com/PeredurOmega/GradleNpmPlugin</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.zeroturnaround</groupId>
      <artifactId>zt-exec</artifactId>
      <version>1.12</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <version>2.10.1</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>nu.studer</groupId>
      <artifactId>gradle-credentials-plugin</artifactId>
      <version>3.0</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib</artifactId>
      <version>1.9.21</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
</project>
