<?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>cn.thinkinginjava</groupId>
  <artifactId>mockit-core</artifactId>
  <version>0.0.4</version>
  <name>mockit-core</name>
  <description>Non-invasive mock framework</description>
  <url>https://github.com/bombl/mockit</url>
  <licenses>
    <license>
      <name>GNU General Public License version 3</name>
      <url>https://opensource.org/licenses/GPL-3.0</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>mockit</id>
      <name>ws</name>
      <email>youngcoder@163.com</email>
      <url>https://www.thinkinginjava.cn/</url>
    </developer>
  </developers>
  <mailingLists>
    <mailingList>
      <name>Mockit Developer List</name>
      <post>youngcoder@163.com</post>
    </mailingList>
  </mailingLists>
  <scm>
    <connection>scm:git:https://github.com/bombl/mockit.git/mockit-core</connection>
    <developerConnection>scm:git:https://github.com/bombl/mockit.git/mockit-core</developerConnection>
    <tag>master</tag>
    <url>https://github.com/bombl/mockit/mockit-core</url>
  </scm>
  <issueManagement>
    <system>GitHub Issues</system>
    <url>https://github.com/bombl/mockit/issues</url>
  </issueManagement>
  <dependencies>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter</artifactId>
      <version>2.6.8</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>cn.thinkinginjava</groupId>
      <artifactId>mockit-common</artifactId>
      <version>0.0.4</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>net.bytebuddy</groupId>
      <artifactId>byte-buddy</artifactId>
      <version>1.14.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>net.bytebuddy</groupId>
      <artifactId>byte-buddy-agent</artifactId>
      <version>1.14.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.javassist</groupId>
      <artifactId>javassist</artifactId>
      <version>3.19.0-GA</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.13.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
      <version>3.12.0</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.sonatype.plugins</groupId>
        <artifactId>nexus-staging-maven-plugin</artifactId>
        <version>1.6.7</version>
        <extensions>true</extensions>
      </plugin>
    </plugins>
  </build>
</project>
