Skip to content

Commit ff74f27

Browse files
committed
bridge to bytecode
1 parent 650c0dd commit ff74f27

File tree

5 files changed

+40
-8
lines changed

5 files changed

+40
-8
lines changed

bridge/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
</parent>
3535
<artifactId>bridge</artifactId>
3636
<dependencies>
37+
<dependency>
38+
<groupId>org.slf4j</groupId>
39+
<artifactId>slf4j-api</artifactId>
40+
</dependency>
41+
<dependency>
42+
<groupId>ch.qos.logback</groupId>
43+
<artifactId>logback-classic</artifactId>
44+
</dependency>
3745
<dependency>
3846
<groupId>org.junit.jupiter</groupId>
3947
<artifactId>junit-jupiter-engine</artifactId>

builder/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
</parent>
3535
<artifactId>builder</artifactId>
3636
<dependencies>
37+
<dependency>
38+
<groupId>org.slf4j</groupId>
39+
<artifactId>slf4j-api</artifactId>
40+
</dependency>
41+
<dependency>
42+
<groupId>ch.qos.logback</groupId>
43+
<artifactId>logback-classic</artifactId>
44+
</dependency>
3745
<dependency>
3846
<groupId>org.junit.jupiter</groupId>
3947
<artifactId>junit-jupiter-engine</artifactId>

business-delegate/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
</parent>
3535
<artifactId>business-delegate</artifactId>
3636
<dependencies>
37+
<dependency>
38+
<groupId>org.slf4j</groupId>
39+
<artifactId>slf4j-api</artifactId>
40+
</dependency>
41+
<dependency>
42+
<groupId>ch.qos.logback</groupId>
43+
<artifactId>logback-classic</artifactId>
44+
</dependency>
3745
<dependency>
3846
<groupId>org.junit.jupiter</groupId>
3947
<artifactId>junit-jupiter-engine</artifactId>

bytecode/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
<modelVersion>4.0.0</modelVersion>
3535
<artifactId>bytecode</artifactId>
3636
<dependencies>
37+
<dependency>
38+
<groupId>org.slf4j</groupId>
39+
<artifactId>slf4j-api</artifactId>
40+
</dependency>
41+
<dependency>
42+
<groupId>ch.qos.logback</groupId>
43+
<artifactId>logback-classic</artifactId>
44+
</dependency>
3745
<dependency>
3846
<groupId>org.junit.jupiter</groupId>
3947
<artifactId>junit-jupiter-engine</artifactId>

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@
6969
<!-- <module>adapter</module>-->
7070
<!-- <module>ambassador</module>-->
7171
<!-- <module>anti-corruption-layer</module>-->
72-
<module>arrange-act-assert</module>
73-
<module>async-method-invocation</module>
74-
<module>balking</module>
75-
<module>bloc</module>
76-
<!-- <module>bridge</module>-->
77-
<!-- <module>builder</module>-->
78-
<!-- <module>business-delegate</module>-->
79-
<!-- <module>bytecode</module>-->
72+
<!-- <module>arrange-act-assert</module>-->
73+
<!-- <module>async-method-invocation</module>-->
74+
<!-- <module>balking</module>-->
75+
<!-- <module>bloc</module>-->
76+
<module>bridge</module>
77+
<module>builder</module>
78+
<module>business-delegate</module>
79+
<module>bytecode</module>
8080
<!-- <module>caching</module>-->
8181
<!-- <module>callback</module>-->
8282
<!-- <module>chain-of-responsibility</module>-->

0 commit comments

Comments
 (0)