<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    
  <modelVersion>4.0.0</modelVersion>

  <groupId>org.graalvm.python</groupId>
  <artifactId>graalpy-maven-plugin</artifactId>
  <packaging>maven-plugin</packaging>
  
  <version>24.2.0</version>
  <url>http://www.graalvm.org/python</url>
  <name>graalpy-maven-plugin</name>
  <description>Handles python related resources in a maven GraalPy - Java polyglot application.</description>

  <properties>
    <maven.compiler.target>17</maven.compiler.target>
    <maven.compiler.source>17</maven.compiler.source>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <graalpy.version>24.2.0</graalpy.version>
  </properties>

  <profiles>
      <profile>
          <id>Version from suite</id>
          <activation>
              <property>
                  <name>env.GRAALPY_VERSION</name>
              </property>
          </activation>
          <properties>
              <graalpy.version>${env.GRAALPY_VERSION}</graalpy.version>
          </properties>
      </profile>
  </profiles>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-plugin-plugin</artifactId>
        <version>3.9.0</version>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-api</artifactId>
      <version>3.9.0</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-core</artifactId>
      <version>3.9.0</version>
      <scope>provided</scope>
    </dependency>

    <dependency>
      <groupId>org.apache.maven.shared</groupId>
      <artifactId>maven-verifier</artifactId>
      <version>2.0.0-M1</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.graalvm.python</groupId>
      <artifactId>python-embedding-tools</artifactId>
      <version>24.2.0</version>
    </dependency>
    <dependency>
      <groupId>org.graalvm.python</groupId>
      <artifactId>python-launcher</artifactId>
      <version>24.2.0</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
<developers><developer><name>GraalVM Development</name><email>graalvm-dev@oss.oracle.com</email><organization>Oracle Corporation</organization><organizationUrl>http://www.graalvm.org/</organizationUrl></developer></developers><licenses><license><name>Universal Permissive License, Version 1.0</name><url>http://opensource.org/licenses/UPL</url></license></licenses><scm><connection>scm:git:https://github.com/graalvm/graalpython.git</connection><developerConnection>scm:git:git@github.com:graalvm/graalpython.git</developerConnection><url>https://github.com/graalvm/graalpython</url></scm></project>