Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f6ce509

Browse files
committed
Merge branch 'logging' of https://github.com/nhajratw/cucumber-jvm into nhajratw-logging
2 parents 71b7087 + 20d9114 commit f6ce509

File tree

20 files changed

+144
-45
lines changed

20 files changed

+144
-45
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Stories in Ready](https://badge.waffle.io/cucumber/cucumber-jvm.png?label=ready)](https://waffle.io/cucumber/cucumber-jvm)
1+
[![Stories in Ready](https://badge.waffle.io/cucumber/cucumber-jvm.png?label=ready)](https://waffle.io/cucumber/cucumber-jvm)
22
[![Build Status](https://secure.travis-ci.org/cucumber/cucumber-jvm.png)](http://travis-ci.org/cucumber/cucumber-jvm)
33

44
Cucumber-JVM is a pure Java implementation of Cucumber that supports the [most popular](http://cukes.info/platforms.html) programming languages for the JVM.

examples/android/android-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>info.cukes.android-examples</groupId>
88
<artifactId>android-examples</artifactId>
99
<relativePath>../pom.xml</relativePath>
10-
<version>1.1.8-SNAPSHOT</version>
10+
<version>1.1.9-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>cucumber-android-test</artifactId>

examples/android/cukeulator-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>info.cukes.android-examples</groupId>
88
<artifactId>android-examples</artifactId>
99
<relativePath>../pom.xml</relativePath>
10-
<version>1.1.8-SNAPSHOT</version>
10+
<version>1.1.9-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>cukelator-test</artifactId>

examples/android/cukeulator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>info.cukes.android-examples</groupId>
88
<artifactId>android-examples</artifactId>
99
<relativePath>../pom.xml</relativePath>
10-
<version>1.1.8-SNAPSHOT</version>
10+
<version>1.1.9-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>cukelator</artifactId>

examples/android/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@
77
<groupId>info.cukes</groupId>
88
<artifactId>cucumber-jvm</artifactId>
99
<relativePath>../../pom.xml</relativePath>
10-
<version>1.1.8-SNAPSHOT</version>
10+
<version>1.1.9-SNAPSHOT</version>
1111
</parent>
1212

1313
<groupId>info.cukes.android-examples</groupId>
1414
<artifactId>android-examples</artifactId>
15-
<version>1.1.8-SNAPSHOT</version>
1615
<packaging>pom</packaging>
1716
<name>Examples: Android</name>
1817

examples/java-calculator-testng/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>info.cukes</groupId>
66
<artifactId>cucumber-jvm</artifactId>
77
<relativePath>../../pom.xml</relativePath>
8-
<version>1.1.8-SNAPSHOT</version>
8+
<version>1.1.9-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>java-calculator-testng</artifactId>

examples/java-webbit-websockets-selenium/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,15 @@
6969
<artifactId>junit</artifactId>
7070
<scope>test</scope>
7171
</dependency>
72+
<dependency>
73+
<groupId>org.slf4j</groupId>
74+
<artifactId>jcl-over-slf4j</artifactId>
75+
<scope>test</scope>
76+
</dependency>
77+
<dependency>
78+
<groupId>ch.qos.logback</groupId>
79+
<artifactId>logback-classic</artifactId>
80+
<scope>test</scope>
81+
</dependency>
7282
</dependencies>
7383
</project>

examples/java-wicket/java-wicket-main/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>info.cukes</groupId>
66
<artifactId>java-wicket</artifactId>
7-
<version>1.1.8-SNAPSHOT</version>
7+
<version>1.1.9-SNAPSHOT</version>
88
</parent>
99
<artifactId>java-wicket-main</artifactId>
1010
<name>Examples: Wicket application</name>
@@ -17,6 +17,14 @@
1717
<groupId>org.apache.wicket</groupId>
1818
<artifactId>wicket-core</artifactId>
1919
</dependency>
20+
<dependency>
21+
<groupId>org.slf4j</groupId>
22+
<artifactId>jcl-over-slf4j</artifactId>
23+
</dependency>
24+
<dependency>
25+
<groupId>ch.qos.logback</groupId>
26+
<artifactId>logback-classic</artifactId>
27+
</dependency>
2028
<dependency>
2129
<groupId>junit</groupId>
2230
<artifactId>junit</artifactId>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<configuration>
2+
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
3+
<!-- encoders are assigned the type
4+
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
5+
<encoder>
6+
<pattern>%date [%thread] %-5level %logger{36} - %msg%n</pattern>
7+
</encoder>
8+
</appender>
9+
10+
<root level="INFO">
11+
<appender-ref ref="STDOUT" />
12+
</root>
13+
</configuration>

examples/java-wicket/java-wicket-test/pom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>info.cukes</groupId>
66
<artifactId>java-wicket</artifactId>
7-
<version>1.1.8-SNAPSHOT</version>
7+
<version>1.1.9-SNAPSHOT</version>
88
</parent>
99
<artifactId>java-wicket-test</artifactId>
1010
<name>Examples: Wicket application tested with Selenium</name>
@@ -100,5 +100,15 @@
100100
<artifactId>selenium-java</artifactId>
101101
<scope>test</scope>
102102
</dependency>
103+
<dependency>
104+
<groupId>org.slf4j</groupId>
105+
<artifactId>jcl-over-slf4j</artifactId>
106+
<scope>test</scope>
107+
</dependency>
108+
<dependency>
109+
<groupId>ch.qos.logback</groupId>
110+
<artifactId>logback-classic</artifactId>
111+
<scope>test</scope>
112+
</dependency>
103113
</dependencies>
104114
</project>

0 commit comments

Comments
 (0)