File tree Expand file tree Collapse file tree 3 files changed +23
-3
lines changed
Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ The best practise of using Booster is integrating the specific module to solve t
7474
7575``` groovy
7676buildscript {
77- ext.booster_version = '4.2.1 '
77+ ext.booster_version = '4.3.0 '
7878 repositories {
7979 google()
8080 mavenCentral()
@@ -122,7 +122,7 @@ The `plugins` DSL also supported since Booster *3.0.0*
122122
123123``` groovy
124124plugins {
125- id 'com.didiglobal.booster' version '4.2.1 '
125+ id 'com.didiglobal.booster' version '4.3.0 '
126126}
127127```
128128
@@ -292,6 +292,21 @@ Here are all the modules of Booster:
292292 classpath "com.didiglobal.booster:booster-task-list-shared-library:$booster_version"
293293 ```
294294
295+ ### Unit Test
296+
297+ - [ booster-test-asm] ( ./booster-test-asm ) - Support running unit test with ASM based transformer
298+
299+ ``` groovy
300+ classpath "com.didiglobal.booster:booster-task-asm:$booster_version"
301+ ```
302+
303+ - [ booster-test-javassist] ( ./booster-test-javassist ) - Support running unit test with Javassist based transformer
304+
305+
306+ ``` groovy
307+ classpath "com.didiglobal.booster:booster-task-javassist:$booster_version"
308+ ```
309+
295310## Samples | 示例
296311
297312- [ transformer-with-asm] ( https://github.com/boostersamples/transformer-with-asm )
Original file line number Diff line number Diff line change 1+ ## v4.3.0
2+
3+ - Support running local unit test with transformer
4+ - Add collector API for multi-round transform
5+
16## v4.2.0
27
38- Add Android stub APIs
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ allprojects { project ->
3131 apply plugin : ' maven-publish'
3232
3333 group = ' com.didiglobal.booster'
34- version = ' 4.2.1 '
34+ version = ' 4.3.0 '
3535
3636 repositories {
3737 mavenLocal()
You can’t perform that action at this time.
0 commit comments