搜索Gradle插件

版本 3.1.1(最新版)

3.1.1

创建于2021年7月19日。

Gradle插件,用于定义“数据库配置文件”,以便运行测试

使用插件DSL

plugins {
  id("org.hibernate.matrix-profile") version "3.1.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.hibernate.build:hibernate-matrix-testing:3.1.1")
  }
}

apply(plugin = "org.hibernate.matrix-profile")

使用插件DSL

plugins {
  id "org.hibernate.matrix-profile" version "3.1.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.hibernate.build:hibernate-matrix-testing:3.1.1"
  }
}

apply plugin: "org.hibernate.matrix-profile"

学习如何将插件应用到子项目中