|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>net.delirius</groupId> |
5 | 5 | <artifactId>jmeter.backendlistener.elasticsearch</artifactId> |
6 | | - <version>1.5.3</version> |
| 6 | + <version>2.0.0</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <name>jmeter.backendlistener.elasticsearch</name> |
9 | 9 | <url>http://maven.apache.org</url> |
10 | 10 | <properties> |
11 | 11 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
12 | 12 | <maven.compiler.source>1.8</maven.compiler.source> |
13 | 13 | <maven.compiler.target>1.8</maven.compiler.target> |
| 14 | + <java.version>1.8</java.version> |
| 15 | + <junit.version>4.12</junit.version> |
| 16 | + <junit.jupiter.version>5.0.0</junit.jupiter.version> |
| 17 | + <junit.vintage.version>${junit.version}.0</junit.vintage.version> |
| 18 | + <junit.platform.version>1.0.0</junit.platform.version> |
| 19 | + <org.apache.jmeter.version>3.0</org.apache.jmeter.version> |
| 20 | + <org.apache.commons>3.4</org.apache.commons> |
| 21 | + <org.elasticsearch.client>5.5.2</org.elasticsearch.client> |
14 | 22 | </properties> |
15 | 23 | <dependencies> |
16 | 24 | <dependency> |
17 | 25 | <groupId>org.apache.jmeter</groupId> |
18 | 26 | <artifactId>ApacheJMeter_config</artifactId> |
19 | | - <version>3.0</version> |
| 27 | + <version>${org.apache.jmeter.version}</version> |
20 | 28 | <scope>provided</scope> |
21 | 29 | </dependency> |
22 | 30 | <dependency> |
23 | 31 | <groupId>org.apache.jmeter</groupId> |
24 | 32 | <artifactId>ApacheJMeter_core</artifactId> |
25 | | - <version>3.0</version> |
| 33 | + <version>${org.apache.jmeter.version}</version> |
26 | 34 | <scope>provided</scope> |
27 | 35 | </dependency> |
28 | 36 | <dependency> |
29 | 37 | <groupId>org.apache.jmeter</groupId> |
30 | 38 | <artifactId>ApacheJMeter_components</artifactId> |
31 | | - <version>3.0</version> |
| 39 | + <version>${org.apache.jmeter.version}</version> |
32 | 40 | <scope>provided</scope> |
33 | 41 | </dependency> |
34 | 42 | <dependency> |
35 | 43 | <groupId>org.apache.jmeter</groupId> |
36 | 44 | <artifactId>jorphan</artifactId> |
37 | | - <version>3.0</version> |
| 45 | + <version>${org.apache.jmeter.version}</version> |
38 | 46 | <scope>provided</scope> |
39 | 47 | </dependency> |
40 | 48 | <dependency> |
41 | 49 | <groupId>org.apache.commons</groupId> |
42 | 50 | <artifactId>commons-lang3</artifactId> |
43 | | - <version>3.4</version> |
| 51 | + <version>${org.apache.commons}</version> |
44 | 52 | <scope>provided</scope> |
45 | 53 | </dependency> |
46 | 54 | <dependency> |
47 | 55 | <groupId>org.elasticsearch.client</groupId> |
48 | 56 | <artifactId>rest</artifactId> |
49 | | - <version>5.5.2</version> |
| 57 | + <version>${org.elasticsearch.client}</version> |
50 | 58 | </dependency> |
51 | 59 | <dependency> |
52 | 60 | <groupId>org.elasticsearch.client</groupId> |
53 | 61 | <artifactId>transport</artifactId> |
54 | | - <version>5.5.2</version> |
| 62 | + <version>${org.elasticsearch.client}</version> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>junit</groupId> |
| 66 | + <artifactId>junit</artifactId> |
| 67 | + <version>${junit.version}</version> |
| 68 | + <scope>test</scope> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>org.junit.platform</groupId> |
| 72 | + <artifactId>junit-platform-runner</artifactId> |
| 73 | + <version>${junit.platform.version}</version> |
| 74 | + <scope>test</scope> |
| 75 | + </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>org.junit.vintage</groupId> |
| 78 | + <artifactId>junit-vintage-engine</artifactId> |
| 79 | + <version>${junit.vintage.version}</version> |
| 80 | + <scope>test</scope> |
55 | 81 | </dependency> |
56 | 82 | </dependencies> |
57 | 83 | <build> |
58 | 84 | <plugins> |
| 85 | + <plugin> |
| 86 | + <artifactId>maven-surefire-plugin</artifactId> |
| 87 | + <version>2.19</version> |
| 88 | + <dependencies> |
| 89 | + <dependency> |
| 90 | + <groupId>org.junit.platform</groupId> |
| 91 | + <artifactId>junit-platform-surefire-provider</artifactId> |
| 92 | + <version>1.0.2</version> |
| 93 | + </dependency> |
| 94 | + <dependency> |
| 95 | + <groupId>org.junit.jupiter</groupId> |
| 96 | + <artifactId>junit-jupiter-engine</artifactId> |
| 97 | + <version>5.0.2</version> |
| 98 | + </dependency> |
| 99 | + </dependencies> |
| 100 | + </plugin> |
59 | 101 | <plugin> |
60 | 102 | <groupId>org.apache.maven.plugins</groupId> |
61 | 103 | <artifactId>maven-compiler-plugin</artifactId> |
|
0 commit comments