update plugin test doc. (#3804)

This commit is contained in:
aderm 2019-11-08 08:16:52 +08:00 committed by 吴晟 Wu Sheng
parent 62060749f7
commit 998ce29632
1 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ The test framework provides `JVM-container` and `Tomcat-container` base images.
### JVM-container Image Introduction
[JVM-container](../../../test/plugin/containers/jvm-container) uses `openjdk:8` as the basic image.
The test case project is required to be packaged as `project-name.zip`, including `startup.sh` and uber jar, by using `mvn package`.
The test case project is required to be packaged as `project-name.zip`, including `startup.sh` and uber jar, by using `mvn clean package`.
Take the following test projects as good examples
* [sofarpc-scenario](../../../test/plugin/scenarios/sofarpc-scenario) as a single project case.
@ -30,7 +30,7 @@ Take the following test projects as good examples
### Tomcat-container Image Introduction
[Tomcat-container](../../../test/plugin/containers/tomcat-container) uses `tomcat:8.5.42-jdk8-openjdk` as the basic image.
The test case project is required to ba packaged as `project-name.war` by using `mvn package`.
The test case project is required to be packaged as `project-name.war` by using `mvn package`.
Take the following test project as a good example
* [spring-4.3.x-scenario](https://github.com/apache/skywalking/tree/master/test/plugin/scenarios/spring-4.3.x-scenario)