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-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ We welcome direct contributions to the smtpapi-java code base. Thank you!
50
50
##### Prerequisites #####
51
51
52
52
- Java version Oracle JDK 7, 8 or OpenJDK 7
53
-
- See [build.gradle](https://github.com/sendgrid/smtpapi-java/blob/master/build.gradle) for dependencies.
53
+
- See [pom.xml](pom.xml) for dependencies.
54
54
55
55
##### Initial setup: #####
56
56
@@ -62,7 +62,7 @@ cd smtpapi-java
62
62
63
63
##### Execute: #####
64
64
65
-
See the [examples folder](https://github.com/sendgrid/smtpapi-java/tree/master/examples) to get started quickly.
65
+
See the [examples folder](examples) to get started quickly.
66
66
67
67
```bash
68
68
cd examples
@@ -89,9 +89,9 @@ Source code.
89
89
90
90
All PRs require passing tests before the PR will be reviewed.
91
91
92
-
All test files are in the [`/src/test/java/com/sendgrid/smtpapi/`](https://github.com/sendgrid/smtpapi-java/tree/master/src/test/java/com/sendgrid/smtpapi/) directory.
92
+
All test files are in the [`/src/test/java/com/sendgrid/smtpapi/`](src/test/java/com/sendgrid/smtpapi/) directory.
93
93
94
-
For the purposes of contributing to this repo, please update the [`SMTPAPITest.java`](https://github.com/sendgrid/smtpapi-java/blob/master/src/test/java/com/sendgrid/smtpapi/SMTPAPITest.java) file with unit tests as you modify the code.
94
+
For the purposes of contributing to this repo, please update the [`SMTPAPITest.java`](src/test/java/com/sendgrid/smtpapi/SMTPAPITest.java) file with unit tests as you modify the code.
95
95
96
96
To run the tests:
97
97
@@ -150,7 +150,7 @@ Please run your code through:
150
150
5. Locally merge (or rebase) the upstream development branch into your topic branch:
151
151
152
152
```bash
153
-
git pull [--rebase] upstream master
153
+
git pull [--rebase] upstream main
154
154
```
155
155
156
156
6. Push your topic branch up to your fork:
@@ -160,7 +160,7 @@ Please run your code through:
160
160
```
161
161
162
162
7.[Open a Pull Request](https://help.github.com/articles/using-pull-requests/)
163
-
with a clear title and description against the `master` branch. All tests must be passing before we will review the PR.
163
+
with a clear title and description against the `main` branch. All tests must be passing before we will review the PR.
@@ -106,14 +106,14 @@ If you are interested in the future direction of this project, please take a loo
106
106
<aname="contribute"></a>
107
107
# How to Contribute
108
108
109
-
We encourage contribution to our projects, please see our [CONTRIBUTING](https://github.com/sendgrid/smtpapi-java/blob/master/CONTRIBUTING.md) guide for details.
109
+
We encourage contribution to our projects, please see our [CONTRIBUTING](CONTRIBUTING.md) guide for details.
0 commit comments