Skip to content

Commit e108b5f

Browse files
committed
Solve the null parameter problem and upgrade dubbo to 2.6.2
1 parent f282fa6 commit e108b5f

File tree

5 files changed

+185
-154
lines changed

5 files changed

+185
-154
lines changed
Binary file not shown.

dist/jmeter-plugins-dubbo-1.3.5.jar

37.7 KB
Binary file not shown.

pom.xml

+24-22
Original file line numberDiff line numberDiff line change
@@ -19,90 +19,92 @@
1919
<modelVersion>4.0.0</modelVersion>
2020
<groupId>io.github.ningyu</groupId>
2121
<artifactId>jmeter-plugins-dubbo</artifactId>
22-
<version>1.3.4</version>
22+
<version>1.3.5</version>
2323

2424
<properties>
2525
<maven.compiler.source>1.7</maven.compiler.source>
2626
<maven.compiler.target>1.7</maven.compiler.target>
2727
<maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
28+
<dubbo_version>2.6.2</dubbo_version>
29+
<gson_version>2.8.2</gson_version>
30+
<zookeeper_version>3.4.9</zookeeper_version>
31+
<zkclient_version>0.2</zkclient_version>
32+
<curator_version>2.12.0</curator_version>
33+
<fst_version>2.48-jdk-6</fst_version>
34+
<slf4j_version>1.7.25</slf4j_version>
35+
<jorphan_version>3.0</jorphan_version>
36+
<avalon_framework_version>4.1.4</avalon_framework_version>
37+
<jmeter_core_version>3.0</jmeter_core_version>
38+
<avalon_logkit_version>2.0</avalon_logkit_version>
2839
</properties>
2940

3041
<dependencies>
3142
<dependency>
3243
<groupId>avalon-framework</groupId>
3344
<artifactId>avalon-framework</artifactId>
34-
<version>4.1.4</version>
45+
<version>${avalon_framework_version}</version>
3546
<scope>provided</scope>
36-
<!-- <systemPath>E:\user\desktop\ningyu\Desktop\avalon-framework-4.2.0\avalon-framework\jars\avalon-framework-4.2.0.jar</systemPath> -->
3747
</dependency>
3848
<dependency>
3949
<groupId>org.apache.jmeter</groupId>
4050
<artifactId>ApacheJMeter_core</artifactId>
41-
<version>3.0</version>
51+
<version>${jmeter_core_version}</version>
4252
<scope>provided</scope>
43-
<!-- <systemPath>D:\javatools\apache-jmeter-3.0\lib\ext\ApacheJMeter_core.jar</systemPath> -->
4453
</dependency>
4554
<dependency>
4655
<groupId>avalon-logkit</groupId>
4756
<artifactId>avalon-logkit</artifactId>
48-
<version>2.0</version>
57+
<version>${avalon_logkit_version}</version>
4958
<scope>provided</scope>
50-
<!-- <systemPath>D:\javatools\apache-jmeter-3.0\lib\logkit-2.0.jar</systemPath> -->
5159
</dependency>
5260
<dependency>
5361
<groupId>org.apache.jmeter</groupId>
5462
<artifactId>jorphan</artifactId>
55-
<version>3.0</version>
63+
<version>${jorphan_version}</version>
5664
<scope>provided</scope>
57-
<!-- <systemPath>D:\javatools\apache-jmeter-3.0\lib\jorphan.jar</systemPath> -->
5865
</dependency>
5966
<!-- Dubbo -->
6067
<dependency>
6168
<groupId>com.alibaba</groupId>
6269
<artifactId>dubbo</artifactId>
63-
<version>2.6.1</version>
70+
<version>${dubbo_version}</version>
6471
</dependency>
6572
<!-- Zookeeper -->
6673
<dependency>
6774
<groupId>org.apache.zookeeper</groupId>
6875
<artifactId>zookeeper</artifactId>
69-
<version>3.4.6</version>
76+
<version>${zookeeper_version}</version>
7077
</dependency>
7178
<dependency>
7279
<groupId>com.101tec</groupId>
7380
<artifactId>zkclient</artifactId>
74-
<version>0.2</version>
81+
<version>${zkclient_version}</version>
7582
</dependency>
7683
<dependency>
7784
<groupId>org.apache.curator</groupId>
7885
<artifactId>curator-framework</artifactId>
79-
<version>2.12.0</version>
86+
<version>${curator_version}</version>
8087
</dependency>
8188
<dependency>
8289
<groupId>de.ruedigermoeller</groupId>
8390
<artifactId>fst</artifactId>
84-
<version>2.48-jdk-6</version>
91+
<version>${fst_version}</version>
8592
</dependency>
86-
<!-- <dependency> -->
87-
<!-- <groupId>com.github.sgroschupf</groupId> -->
88-
<!-- <artifactId>zkclient</artifactId> -->
89-
<!-- <version>0.1</version> -->
90-
<!-- </dependency> -->
9193
<!-- slf4j -->
9294
<dependency>
9395
<groupId>org.slf4j</groupId>
9496
<artifactId>slf4j-api</artifactId>
95-
<version>1.7.5</version>
97+
<version>${slf4j_version}</version>
9698
</dependency>
9799
<dependency>
98100
<groupId>org.slf4j</groupId>
99101
<artifactId>log4j-over-slf4j</artifactId>
100-
<version>1.7.5</version>
102+
<version>${slf4j_version}</version>
101103
</dependency>
102104
<dependency>
103105
<groupId>com.google.code.gson</groupId>
104106
<artifactId>gson</artifactId>
105-
<version>2.8.2</version>
107+
<version>${gson_version}</version>
106108
</dependency>
107109
</dependencies>
108110
<build>

0 commit comments

Comments
 (0)