搜索Gradle插件

org.hibernate.testing.database-profile

所有者: Hibernate.org

通过配置文件对多个数据库进行测试的支持 - 定义、选择和应用数据库配置文件。基本上增强 `src/test/resources/hibernate.properties` 文件,并可能添加依赖项

https://github.com/hibernate/database-profile-plugin/README.adoc

来源:https://github.com/hibernate/hibernate-matrix-testing

版本 2.0.0.Beta5(最新版)

2.0.0.Beta5

创建于 2020年9月9日。

通过配置文件对多个数据库进行测试的支持

使用 插件DSL

plugins {
  id("org.hibernate.testing.database-profile") version "2.0.0.Beta5"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.hibernate.build.gradle:database-profile-plugin:2.0.0.Beta5")
  }
}

apply(plugin = "org.hibernate.testing.database-profile")

使用 插件DSL

plugins {
  id "org.hibernate.testing.database-profile" version "2.0.0.Beta5"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.hibernate.build.gradle:database-profile-plugin:2.0.0.Beta5"
  }
}

apply plugin: "org.hibernate.testing.database-profile"

了解如何将插件应用于子项目