<?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.microsphere-projects</groupId>
    <artifactId>microsphere-bom</artifactId>
    <version>0.2.8</version>
  </parent>
  <groupId>io.github.microsphere-projects</groupId>
  <artifactId>microsphere-testing-bom</artifactId>
  <version>0.2.8</version>
  <packaging>pom</packaging>
  <name>Microsphere :: BOM :: Testing</name>
  <description>Microsphere BOM of Testing Frameworks</description>
  <url>https://github.com/microsphere-projects/microsphere-bom/microsphere-testing-bom</url>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>mercyblitz</id>
      <name>Mercy Ma</name>
      <email>mercyblitz@gmail.com</email>
      <organization>Microsphere</organization>
      <roles>
        <role>lead</role>
        <role>architect</role>
        <role>developer</role>
      </roles>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git@github.com/microsphere-projects/microsphere-bom.git/microsphere-testing-bom/microsphere-testing-bom</connection>
    <developerConnection>scm:git:ssh://git@github.com/microsphere-projects/microsphere-bom.git/microsphere-testing-bom/microsphere-testing-bom</developerConnection>
    <url>git@github.com/microsphere-projects/microsphere-bom.git/microsphere-testing-bom</url>
  </scm>
  <properties>
    <jmh.version>1.37</jmh.version>
    <junit-jupiter.version>6.1.0</junit-jupiter.version>
    <jsonassert.version>1.5.3</jsonassert.version>
    <junit.version>4.13.2</junit.version>
    <mockito.version>5.23.0</mockito.version>
    <hamcrest.version>3.0</hamcrest.version>
  </properties>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>${junit.version}</version>
      </dependency>
      <dependency>
        <groupId>org.junit</groupId>
        <artifactId>junit-bom</artifactId>
        <version>${junit-jupiter.version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <dependency>
        <groupId>org.mockito</groupId>
        <artifactId>mockito-bom</artifactId>
        <version>${mockito.version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <dependency>
        <groupId>org.skyscreamer</groupId>
        <artifactId>jsonassert</artifactId>
        <version>${jsonassert.version}</version>
      </dependency>
      <dependency>
        <groupId>org.hamcrest</groupId>
        <artifactId>hamcrest</artifactId>
        <version>${hamcrest.version}</version>
      </dependency>
      <dependency>
        <groupId>org.openjdk.jmh</groupId>
        <artifactId>jmh-core</artifactId>
        <version>${jmh.version}</version>
      </dependency>
      <dependency>
        <groupId>org.openjdk.jmh</groupId>
        <artifactId>jmh-generator-annprocess</artifactId>
        <version>${jmh.version}</version>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <profiles>
    <profile>
      <id>java8-16</id>
      <activation>
        <jdk>[1.8,17)</jdk>
      </activation>
      <properties>
        <junit-jupiter.version>5.14.4</junit-jupiter.version>
        <mockito.version>4.11.0</mockito.version>
      </properties>
    </profile>
  </profiles>
</project>
