Skip to content

Commit 02b833f

Browse files
authored
formatting README.md
1 parent f489f39 commit 02b833f

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Sample Java Code for Authorize.Net
2-
[![Build Status](https://travis-ci.org/AuthorizeNet/sample-code-java.png?branch=master)]
3-
(https://travis-ci.org/AuthorizeNet/sample-code-java)
2+
[![Build Status](https://travis-ci.org/AuthorizeNet/sample-code-java.png?branch=master)](https://travis-ci.org/AuthorizeNet/sample-code-java)
43

54
This repository contains working code samples which demonstrate Java integration with the Authorize.Net Java SDK
65
The samples are organized just like our API, which you can also try out directly here: http://developer.authorize.net/api/reference
@@ -14,24 +13,24 @@ The samples are all completely independent and self-contained so you can look at
1413
1. Clone this repository.
1514
2. Run "mvn package" in the root directory to create the SampleCode console app.
1615
3. Then run a sample directly by name:
17-
````
16+
```
1817
> java -jar target/SampleCode.jar [CodeSampleName]
19-
````
18+
```
2019
e.g.
21-
````
20+
```
2221
> java -jar target/SampleCode.jar ChargeCreditCard
23-
````
22+
```
2423
Running SampleCode without a parameter will give you the list of sample names. Handy or what!
2524

2625
**NOTE : You can update to your Sandbox credentials in SampleCode.java**
2726

2827
**For using behind proxy**
2928

3029
Please set the JAVA environment proxy using a similar code :
31-
````
30+
```
3231
System.setProperty("https.proxyUse", "true");
3332
System.setProperty("https.proxyHost", "127.0.0.1");
3433
System.setProperty("https.proxyPort", "3128");
35-
````
34+
```
3635

3736
*PLEASE NOTE THIS PROJECT IS CURRENTLY UNDER DEVELOPMENT*

0 commit comments

Comments
 (0)