Skip to content

Commit 138e7dc

Browse files
Merge branch 'master' into fixHeaderSplit
2 parents 71cecbf + 10afc6e commit 138e7dc

File tree

8 files changed

+415
-205
lines changed

8 files changed

+415
-205
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
# Compiled class file
22
*.class
33

4+
# Eclipse
5+
lib/
6+
.project
7+
certs/
8+
*.jks
9+
*.p12
10+
411
# Log file
512
*.log
13+
logs/
614

715
# BlueJ files
816
*.ctxt
@@ -40,3 +48,4 @@ buildNumber.properties
4048
**.idea
4149
*.iml
4250
*.sh
51+
/bin/

config/log4j2.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Configuration status="info">
3+
<Appenders>
4+
<Console name="Console" target="SYSTEM_OUT">
5+
<PatternLayout pattern="%highlight{%d{dd MMM yyyy HH:mm:ss,SSS} %-5p [%t] - %msg%n%n}{FATAL=bright red, ERROR=bright red, WARN=bright yellow, INFO=bright white, DEBUG=bright blue, TRACE=white}"/>
6+
</Console>
7+
<File name="File" fileName="logs/${date:yyyyMMdd_HHmmss}.log">
8+
<PatternLayout pattern="%d{dd MMM yyyy HH:mm:ss,SSS} %-5p %marker [%t] %C %M - %msg%n"/>
9+
<!--logs/${ctx:testrun:-unknown}_${date:yyyyMMdd_HHmmss}_${ctx:application:-unknown}_${ctx:loadprofile:-Log}.log--></File>
10+
</Appenders>
11+
<Loggers>
12+
<Root level="trace">
13+
<AppenderRef ref="File"/>
14+
<AppenderRef ref="Console"/>
15+
</Root>
16+
</Loggers>
17+
</Configuration>

pom.xml

Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1+
<project
2+
xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
35
<modelVersion>4.0.0</modelVersion>
4-
<groupId>io.github.delirius325</groupId>
6+
<groupId>main.java.io.github.delirius325</groupId>
57
<artifactId>jmeter.backendlistener.elasticsearch</artifactId>
6-
<version>2.6.4-SNAPSHOT</version>
8+
<version>2.6.5</version>
79
<packaging>jar</packaging>
810

911
<name>jmeter.backendlistener.elasticsearch</name>
@@ -35,6 +37,12 @@
3537
<url>http://www.github.com/delirius325</url>
3638
<timezone>America/New_York</timezone>
3739
</developer>
40+
<developer>
41+
<id>siggitrain</id>
42+
<name>Christian Weber</name>
43+
<url>http://www.github.com/siggitrain</url>
44+
<timezone>MESZ</timezone>
45+
</developer>
3846
</developers>
3947

4048
<properties>
@@ -94,7 +102,7 @@
94102
</dependency>
95103
<dependency>
96104
<groupId>org.elasticsearch.client</groupId>
97-
<artifactId>elasticsearch-rest-client</artifactId>
105+
<artifactId>elasticsearch-rest-client</artifactId>
98106
<version>${org.elasticsearch.client}</version>
99107
</dependency>
100108
<dependency>
@@ -161,10 +169,10 @@
161169
<profile>
162170
<id>release-sign-artifacts</id>
163171
<activation>
164-
<property>
172+
<property>
165173
<name>performRelease</name>
166174
<value>true</value>
167-
</property>
175+
</property>
168176
</activation>
169177
<build>
170178
<plugins>
@@ -284,15 +292,15 @@
284292
<goal>shade</goal>
285293
</goals>
286294
<configuration>
287-
<artifactSet>
288-
<excludes>
289-
<exclude>org.apache.jmeter:*</exclude>
290-
<exclude>commons-codec:*</exclude>
291-
<exclude>commons-logging:*</exclude>
292-
<exclude>org.apache.httpcomponents:*</exclude>
293-
<exclude>net.java.dev.jna:*</exclude>
294-
</excludes>
295-
</artifactSet>
295+
<artifactSet>
296+
<excludes>
297+
<exclude>org.apache.jmeter:*</exclude>
298+
<exclude>commons-codec:*</exclude>
299+
<exclude>commons-logging:*</exclude>
300+
<exclude>org.apache.httpcomponents:*</exclude>
301+
<exclude>net.java.dev.jna:*</exclude>
302+
</excludes>
303+
</artifactSet>
296304
</configuration>
297305
</execution>
298306
</executions>

0 commit comments

Comments
 (0)