<?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>
  <parent>
    <groupId>io.github.hanhuoer</groupId>
    <artifactId>maa-framework-java-parent</artifactId>
    <version>3.0.2</version>
  </parent>
  <artifactId>maa-core</artifactId>
  <version>3.0.2</version>
  <name>Maa Core v${project.version}</name>
  <licenses>
    <license>
      <name>GNU Lesser General Public License, Version 3.0</name>
      <url>https://www.gnu.org/licenses/lgpl-3.0.md</url>
    </license>
  </licenses>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <dependencies>
    <dependency>
      <groupId>io.github.hanhuoer</groupId>
      <artifactId>maa-common</artifactId>
    </dependency>
    <dependency>
      <groupId>net.java.dev.jna</groupId>
      <artifactId>jna</artifactId>
    </dependency>
    <dependency>
      <groupId>net.java.dev.jna</groupId>
      <artifactId>jna-platform</artifactId>
    </dependency>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.alibaba.fastjson2</groupId>
      <artifactId>fastjson2</artifactId>
    </dependency>
    <dependency>
      <groupId>cn.hutool</groupId>
      <artifactId>hutool-core</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>io.github.hanhuoer</groupId>
      <artifactId>maa-agent</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>io.github.hanhuoer</groupId>
      <artifactId>maa-linux-aarch64</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>io.github.hanhuoer</groupId>
      <artifactId>maa-linux-x86_64</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>io.github.hanhuoer</groupId>
      <artifactId>maa-macos-aarch64</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>io.github.hanhuoer</groupId>
      <artifactId>maa-macos-x86_64</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>io.github.hanhuoer</groupId>
      <artifactId>maa-windows-aarch64</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>io.github.hanhuoer</groupId>
      <artifactId>maa-windows-x86_64</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>io.github.hanhuoer</groupId>
      <artifactId>maa-android-aarch64</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>io.github.hanhuoer</groupId>
      <artifactId>maa-android-x86_64</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-api</artifactId>
      <version>5.9.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
      <version>5.9.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-params</artifactId>
      <version>5.9.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <version>2.0.3</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>3.0.0-M7</version>
      </plugin>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>${java.version}</source>
          <target>${java.version}</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
