This repository was archived by the owner on Apr 15, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed
src/main/java/com/tagmycode/sdk Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 174174 <dependency >
175175 <groupId >org.json</groupId >
176176 <artifactId >json</artifactId >
177- <version >20080701 </version >
177+ <version >20190722 </version >
178178 </dependency >
179179 <dependency >
180180 <groupId >org.apache.commons</groupId >
181181 <artifactId >commons-lang3</artifactId >
182- <version >3.1 </version >
182+ <version >3.10 </version >
183183 </dependency >
184184 <dependency >
185185 <groupId >com.j256.ormlite</groupId >
186186 <artifactId >ormlite-jdbc</artifactId >
187- <version >5.0 </version >
187+ <version >5.1 </version >
188188 </dependency >
189189 <dependency >
190190 <groupId >com.h2database</groupId >
191191 <artifactId >h2</artifactId >
192192 <version >1.4.193</version >
193193 </dependency >
194194 <dependency >
195- <groupId >log4j </groupId >
196- <artifactId >log4j </artifactId >
197- <version >1.2.17 </version >
195+ <groupId >org.slf4j </groupId >
196+ <artifactId >slf4j-log4j12 </artifactId >
197+ <version >1.7.30 </version >
198198 </dependency >
199-
200199 <!-- test scope -->
201200 <dependency >
202201 <groupId >junit</groupId >
Original file line number Diff line number Diff line change 55import com .tagmycode .sdk .exception .TagMyCodeConnectionException ;
66import com .tagmycode .sdk .exception .TagMyCodeException ;
77import com .tagmycode .sdk .exception .TagMyCodeUnauthorizedException ;
8- import org .apache .log4j .Logger ;
98import org .scribe .builder .ServiceBuilder ;
109import org .scribe .exceptions .OAuthException ;
1110import org .scribe .model .OAuthRequest ;
1211import org .scribe .model .Response ;
1312import org .scribe .model .Verb ;
1413import org .scribe .model .Verifier ;
15-
14+ import org .slf4j .Logger ;
15+ import org .slf4j .LoggerFactory ;
1616import java .util .Map ;
1717
1818public class Client {
@@ -21,7 +21,7 @@ public class Client {
2121 private OauthToken oauthToken ;
2222 private TagMyCodeApi tagmycodeApi ;
2323 private IOauthWallet wallet ;
24- public final static Logger logger = Logger .getLogger (Client .class );
24+ public final static Logger logger = LoggerFactory .getLogger (Client .class );
2525
2626 public Client (TagMyCodeApi tagmycodeApi , String key , String secret , IOauthWallet wallet ) {
2727 this .tagmycodeApi = tagmycodeApi ;
You can’t perform that action at this time.
0 commit comments