File tree Expand file tree Collapse file tree 20 files changed +144
-45
lines changed
java-webbit-websockets-selenium Expand file tree Collapse file tree 20 files changed +144
-45
lines changed Original file line number Diff line number Diff line change 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 )
2
2
[ ![ Build Status] ( https://secure.travis-ci.org/cucumber/cucumber-jvm.png )] ( http://travis-ci.org/cucumber/cucumber-jvm )
3
3
4
4
Cucumber-JVM is a pure Java implementation of Cucumber that supports the [ most popular] ( http://cukes.info/platforms.html ) programming languages for the JVM.
Original file line number Diff line number Diff line change 7
7
<groupId >info.cukes.android-examples</groupId >
8
8
<artifactId >android-examples</artifactId >
9
9
<relativePath >../pom.xml</relativePath >
10
- <version >1.1.8 -SNAPSHOT</version >
10
+ <version >1.1.9 -SNAPSHOT</version >
11
11
</parent >
12
12
13
13
<artifactId >cucumber-android-test</artifactId >
Original file line number Diff line number Diff line change 7
7
<groupId >info.cukes.android-examples</groupId >
8
8
<artifactId >android-examples</artifactId >
9
9
<relativePath >../pom.xml</relativePath >
10
- <version >1.1.8 -SNAPSHOT</version >
10
+ <version >1.1.9 -SNAPSHOT</version >
11
11
</parent >
12
12
13
13
<artifactId >cukelator-test</artifactId >
Original file line number Diff line number Diff line change 7
7
<groupId >info.cukes.android-examples</groupId >
8
8
<artifactId >android-examples</artifactId >
9
9
<relativePath >../pom.xml</relativePath >
10
- <version >1.1.8 -SNAPSHOT</version >
10
+ <version >1.1.9 -SNAPSHOT</version >
11
11
</parent >
12
12
13
13
<artifactId >cukelator</artifactId >
Original file line number Diff line number Diff line change 7
7
<groupId >info.cukes</groupId >
8
8
<artifactId >cucumber-jvm</artifactId >
9
9
<relativePath >../../pom.xml</relativePath >
10
- <version >1.1.8 -SNAPSHOT</version >
10
+ <version >1.1.9 -SNAPSHOT</version >
11
11
</parent >
12
12
13
13
<groupId >info.cukes.android-examples</groupId >
14
14
<artifactId >android-examples</artifactId >
15
- <version >1.1.8-SNAPSHOT</version >
16
15
<packaging >pom</packaging >
17
16
<name >Examples: Android</name >
18
17
Original file line number Diff line number Diff line change 5
5
<groupId >info.cukes</groupId >
6
6
<artifactId >cucumber-jvm</artifactId >
7
7
<relativePath >../../pom.xml</relativePath >
8
- <version >1.1.8 -SNAPSHOT</version >
8
+ <version >1.1.9 -SNAPSHOT</version >
9
9
</parent >
10
10
11
11
<artifactId >java-calculator-testng</artifactId >
Original file line number Diff line number Diff line change 69
69
<artifactId >junit</artifactId >
70
70
<scope >test</scope >
71
71
</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 >
72
82
</dependencies >
73
83
</project >
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >info.cukes</groupId >
6
6
<artifactId >java-wicket</artifactId >
7
- <version >1.1.8 -SNAPSHOT</version >
7
+ <version >1.1.9 -SNAPSHOT</version >
8
8
</parent >
9
9
<artifactId >java-wicket-main</artifactId >
10
10
<name >Examples: Wicket application</name >
17
17
<groupId >org.apache.wicket</groupId >
18
18
<artifactId >wicket-core</artifactId >
19
19
</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 >
20
28
<dependency >
21
29
<groupId >junit</groupId >
22
30
<artifactId >junit</artifactId >
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >info.cukes</groupId >
6
6
<artifactId >java-wicket</artifactId >
7
- <version >1.1.8 -SNAPSHOT</version >
7
+ <version >1.1.9 -SNAPSHOT</version >
8
8
</parent >
9
9
<artifactId >java-wicket-test</artifactId >
10
10
<name >Examples: Wicket application tested with Selenium</name >
100
100
<artifactId >selenium-java</artifactId >
101
101
<scope >test</scope >
102
102
</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 >
103
113
</dependencies >
104
114
</project >
You can’t perform that action at this time.
0 commit comments