Skip to content

0.2.0

Compare
Choose a tag to compare
@985892345 985892345 released this 23 Jun 17:40
· 23 commits to master since this release
439fdea

✨新增SourceSet源集热修gradle插件

SourceSet 热修方案将有以下改变:

  • 不用再添加 jitpack 依赖
  • 不用再添加 mirai-hotfix 依赖
  • 添加 hotfix 闭包更方便一键生成源集

使用方式:

plugins {
   // 版本号在这里查看:https://plugins.gradle.org/plugin/io.github.985892345.mirai-hotfix
   id("io.github.985892345.mirai-hotfix") version "1.0"
}

// 插件中已经自动依赖了 mirai-hotfix

hotfix {
   // 新建了一个 hotfix-demo 源集,且会自动生成打包该源集的命令 gradlew hotfix-demo
   createHotfix("hotfix-demo") {
      // 这里面写该源集单独使用的依赖
      implementation("com.google.code.gson:gson:2.9.0")
   }

   // 可以多写几个,但源集之间并不会自动依赖
}