You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ We welcome direct contributions to the java-http-client code base. Thank you!
50
50
##### Prerequisites #####
51
51
52
52
- Java 8 or 11
53
-
- Please see [build.gradle](https://github.com/sendgrid/java-http-client/blob/master/build.gradle)
53
+
- Please see [pom.xml](pom.xml)
54
54
55
55
##### Initial setup: #####
56
56
@@ -61,7 +61,7 @@ cd java-http-client
61
61
62
62
##### Execute: #####
63
63
64
-
See the [examples folder](https://github.com/sendgrid/java-http-client/tree/master/examples) to get started quickly.
64
+
See the [examples folder](examples) to get started quickly.
65
65
66
66
You will need to setup the following environment to use the SendGrid example:
67
67
@@ -105,9 +105,9 @@ Provides a standard interface to an API's response.
105
105
106
106
All PRs require passing tests before the PR will be reviewed.
107
107
108
-
All test files are in [`java-http-client/src/test/java/com/sendgrid`](https://github.com/sendgrid/java-http-client/tree/master/src/test/java/com/sendgrid).
108
+
All test files are in [`java-http-client/src/test/java/com/sendgrid`](src/test/java/com/sendgrid).
109
109
110
-
For the purposes of contributing to this repo, please update the [`ClientTest.java`](https://github.com/sendgrid/java-http-client/blob/master/src/test/java/com/sendgrid/ClientTest.java) file with unit tests as you modify the code.
110
+
For the purposes of contributing to this repo, please update the [`ClientTest.java`](src/test/java/com/sendgrid/ClientTest.java) file with unit tests as you modify the code.
111
111
112
112
113
113
Run the tests:
@@ -168,7 +168,7 @@ Please run your code through:
168
168
5. Locally merge (or rebase) the upstream development branch into your topic branch:
169
169
170
170
```bash
171
-
git pull [--rebase] upstream master
171
+
git pull [--rebase] upstream main
172
172
```
173
173
174
174
6. Push your topic branch up to your fork:
@@ -178,7 +178,7 @@ Please run your code through:
178
178
```
179
179
180
180
7.[Open a Pull Request](https://help.github.com/articles/using-pull-requests/)
181
-
with a clear title and description against the `master` branch. All tests must be passing before we will review the PR.
181
+
with a clear title and description against the `main` branch. All tests must be passing before we will review the PR.
182
182
183
183
## Code Reviews
184
184
If you can, please look at open PRs and review them. Give feedback and help us merge these PRs much faster! If you don't know how, GitHub has some great [information on how to review a Pull Request](https://help.github.com/articles/about-pull-request-reviews/).
@@ -25,7 +25,7 @@ If you are looking for the SendGrid API client library, please see [this repo](h
25
25
# Announcements
26
26
**The default branch name for this repository has been changed to `main` as of 07/27/2020.**
27
27
28
-
All updates to this project are documented in our [CHANGELOG](https://github.com/sendgrid/java-http-client/blob/master/CHANGELOG.md).
28
+
All updates to this project are documented in our [CHANGELOG](CHANGELOG.md).
29
29
30
30
<aname="installation"></a>
31
31
# Installation
@@ -67,7 +67,7 @@ repositories {
67
67
68
68
## Dependencies
69
69
70
-
- Please see the [build.gradle file](https://github.com/sendgrid/java-http-client/blob/master/build.gradle)
70
+
- Please see the [pom.xml file](pom.xml)
71
71
72
72
<aname="quick-start"></a>
73
73
# Quick Start
@@ -124,7 +124,7 @@ If you are interested in the future direction of this project, please take a loo
124
124
<aname="contribute"></a>
125
125
# How to Contribute
126
126
127
-
We encourage contribution to our projects please see our [CONTRIBUTING](https://github.com/sendgrid/java-http-client/blob/master/CONTRIBUTING.md) guide for details.
127
+
We encourage contribution to our projects please see our [CONTRIBUTING](CONTRIBUTING.md) guide for details.
Due to Oracle's JDK license, you must build this Docker image using the official Oracle image located in the Docker Store. You will need a Docker store account. Once you have an account, you must accept the Oracle license [here](https://store.docker.com/images/oracle-serverjre-8). On the command line, type `docker login` and provide your credentials. You may then build the image using this command `docker build -t sendgrid/java-http-client -f Dockerfile .`
@@ -11,7 +11,7 @@ Due to Oracle's JDK license, you must build this Docker image using the official
0 commit comments