File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 15
15
<junit .version>4.12</junit .version>
16
16
<junit .jupiter.version>5.0.0</junit .jupiter.version>
17
17
<junit .vintage.version>${junit.version} .0</junit .vintage.version>
18
+ <junit .jupiter.version>5.0.0</junit .jupiter.version>
18
19
<junit .platform.version>1.0.0</junit .platform.version>
19
20
<org .apache.jmeter.version>3.0</org .apache.jmeter.version>
20
21
<org .apache.commons>3.4</org .apache.commons>
61
62
<artifactId >transport</artifactId >
62
63
<version >${org.elasticsearch.client} </version >
63
64
</dependency >
65
+ <dependency >
66
+ <groupId >org.junit.jupiter</groupId >
67
+ <artifactId >junit-jupiter-engine</artifactId >
68
+ <version >${junit.jupiter.version} </version >
69
+ <scope >test</scope >
70
+ </dependency >
64
71
<dependency >
65
72
<groupId >junit</groupId >
66
73
<artifactId >junit</artifactId >
119
126
<goal >copy-dependencies</goal >
120
127
</goals >
121
128
<configuration >
129
+ <includeScope >compile</includeScope >
122
130
<excludeScope >provided</excludeScope >
123
131
<outputDirectory >${project.build.directory} /dependencies</outputDirectory >
124
132
<overWriteReleases >false</overWriteReleases >
128
136
</execution >
129
137
</executions >
130
138
</plugin >
139
+ <plugin >
140
+ <groupId >org.apache.maven.plugins</groupId >
141
+ <artifactId >maven-shade-plugin</artifactId >
142
+ <version >2.3</version >
143
+ <executions >
144
+ <!-- Run shade goal on package phase -->
145
+ <execution >
146
+ <phase >package</phase >
147
+ <goals >
148
+ <goal >shade</goal >
149
+ </goals >
150
+ <configuration >
151
+ <transformers >
152
+ <!-- add Main-Class to manifest file -->
153
+ <transformer implementation =" org.apache.maven.plugins.shade.resource.ManifestResourceTransformer" >
154
+ <mainClass >net.delirius.jmeter.backendlistener.elasticsearch.ElasticsearchBackend</mainClass >
155
+ </transformer >
156
+ </transformers >
157
+ </configuration >
158
+ </execution >
159
+ </executions >
160
+ </plugin >
131
161
</plugins >
132
162
</build >
133
163
</project >
You can’t perform that action at this time.
0 commit comments