mirror of
https://github.com/alibaba/testable-mock.git
synced 2025-04-16 06:22:35 +08:00
bump to v0.4.2
This commit is contained in:
parent
28bde0b85a
commit
bf4c263d93
demo
docs/zh-cn/doc
testable-agent
testable-all
testable-core
testable-maven-plugin
testable-parent
testable-processor
@ -12,8 +12,8 @@ repositories {
|
||||
|
||||
dependencies {
|
||||
testImplementation('org.junit.jupiter:junit-jupiter:5.6.2')
|
||||
testImplementation('com.alibaba.testable:testable-all:0.4.2-SNAPSHOT')
|
||||
testAnnotationProcessor('com.alibaba.testable:testable-processor:0.4.2-SNAPSHOT')
|
||||
testImplementation('com.alibaba.testable:testable-all:0.4.2')
|
||||
testAnnotationProcessor('com.alibaba.testable:testable-processor:0.4.2')
|
||||
}
|
||||
|
||||
test {
|
||||
|
@ -12,7 +12,7 @@
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<junit.version>5.6.2</junit.version>
|
||||
<testable.version>0.4.2-SNAPSHOT</testable.version>
|
||||
<testable.version>0.4.2</testable.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
@ -16,8 +16,8 @@ dependencies {
|
||||
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
||||
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
||||
testImplementation("org.junit.jupiter:junit-jupiter:5.6.2")
|
||||
testImplementation("com.alibaba.testable:testable-all:0.4.2-SNAPSHOT")
|
||||
testAnnotationProcessor("com.alibaba.testable:testable-processor:0.4.2-SNAPSHOT")
|
||||
testImplementation("com.alibaba.testable:testable-all:0.4.2")
|
||||
testAnnotationProcessor("com.alibaba.testable:testable-processor:0.4.2")
|
||||
}
|
||||
|
||||
tasks.withType<KotlinCompile> {
|
||||
|
@ -14,7 +14,7 @@
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<junit.version>5.6.2</junit.version>
|
||||
<testable.version>0.4.2-SNAPSHOT</testable.version>
|
||||
<testable.version>0.4.2</testable.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
@ -1,5 +1,10 @@
|
||||
# Release Note
|
||||
|
||||
## 0.4.2
|
||||
- support change javaagent global log level via maven plugin
|
||||
- fix an issue of duplicate test class injection
|
||||
- fix an issue cause multiple method invocation mock fail
|
||||
|
||||
## 0.4.1
|
||||
- deprecate @TestableMock annotation, use @MockMethod and @MockConstructor instead
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
```xml
|
||||
<properties>
|
||||
<testable.version>0.4.1</testable.version>
|
||||
<testable.version>0.4.2</testable.version>
|
||||
</properties>
|
||||
```
|
||||
|
||||
@ -62,8 +62,8 @@
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
testImplementation('com.alibaba.testable:testable-all:0.4.1')
|
||||
testAnnotationProcessor('com.alibaba.testable:testable-processor:0.4.1')
|
||||
testImplementation('com.alibaba.testable:testable-all:0.4.2')
|
||||
testAnnotationProcessor('com.alibaba.testable:testable-processor:0.4.2')
|
||||
}
|
||||
```
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>com.alibaba.testable</groupId>
|
||||
<artifactId>testable-parent</artifactId>
|
||||
<version>0.4.2-SNAPSHOT</version>
|
||||
<version>0.4.2</version>
|
||||
<relativePath>../testable-parent</relativePath>
|
||||
</parent>
|
||||
<artifactId>testable-agent</artifactId>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>com.alibaba.testable</groupId>
|
||||
<artifactId>testable-parent</artifactId>
|
||||
<version>0.4.2-SNAPSHOT</version>
|
||||
<version>0.4.2</version>
|
||||
<relativePath>../testable-parent</relativePath>
|
||||
</parent>
|
||||
<artifactId>testable-all</artifactId>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>com.alibaba.testable</groupId>
|
||||
<artifactId>testable-parent</artifactId>
|
||||
<version>0.4.2-SNAPSHOT</version>
|
||||
<version>0.4.2</version>
|
||||
<relativePath>../testable-parent</relativePath>
|
||||
</parent>
|
||||
<artifactId>testable-core</artifactId>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>com.alibaba.testable</groupId>
|
||||
<artifactId>testable-parent</artifactId>
|
||||
<version>0.4.2-SNAPSHOT</version>
|
||||
<version>0.4.2</version>
|
||||
<relativePath>../testable-parent</relativePath>
|
||||
</parent>
|
||||
<artifactId>testable-maven-plugin</artifactId>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.alibaba.testable</groupId>
|
||||
<artifactId>testable-parent</artifactId>
|
||||
<version>0.4.2-SNAPSHOT</version>
|
||||
<version>0.4.2</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>testable-parent</name>
|
||||
<description>Unit test enhancement toolkit</description>
|
||||
@ -42,7 +42,7 @@
|
||||
<plugin.gpg.version>1.6</plugin.gpg.version>
|
||||
<plugin.staging.version>1.6.8</plugin.staging.version>
|
||||
<plugin.maven.version>3.6.0</plugin.maven.version>
|
||||
<testable.version>0.4.2-SNAPSHOT</testable.version>
|
||||
<testable.version>0.4.2</testable.version>
|
||||
</properties>
|
||||
|
||||
<profiles>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>com.alibaba.testable</groupId>
|
||||
<artifactId>testable-parent</artifactId>
|
||||
<version>0.4.2-SNAPSHOT</version>
|
||||
<version>0.4.2</version>
|
||||
<relativePath>../testable-parent</relativePath>
|
||||
</parent>
|
||||
<artifactId>testable-processor</artifactId>
|
||||
|
Loading…
Reference in New Issue
Block a user