Skip to content

Commit 6759ce9

Browse files
chore: update GitHub branch references to use HEAD (#108)
1 parent 63f760c commit 6759ce9

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ We welcome direct contributions to the smtpapi-java code base. Thank you!
5050
##### Prerequisites #####
5151

5252
- 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.
5454

5555
##### Initial setup: #####
5656

@@ -62,7 +62,7 @@ cd smtpapi-java
6262

6363
##### Execute: #####
6464

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.
6666

6767
```bash
6868
cd examples
@@ -89,9 +89,9 @@ Source code.
8989

9090
All PRs require passing tests before the PR will be reviewed.
9191

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.
9393

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.
9595

9696
To run the tests:
9797

@@ -150,7 +150,7 @@ Please run your code through:
150150
5. Locally merge (or rebase) the upstream development branch into your topic branch:
151151

152152
```bash
153-
git pull [--rebase] upstream master
153+
git pull [--rebase] upstream main
154154
```
155155

156156
6. Push your topic branch up to your fork:
@@ -160,7 +160,7 @@ Please run your code through:
160160
```
161161

162162
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.
164164

165165
<a name="code-reviews"></a>
166166
## Code Reviews

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
![SendGrid Logo](https://uiux.s3.amazonaws.com/2016-logos/email-logo%402x.png)
1+
![SendGrid Logo](twilio_sendgrid_logo.png)
22

3-
[![BuildStatus](https://travis-ci.org/sendgrid/smtpapi-java.svg?branch=master)](https://travis-ci.org/sendgrid/smtpapi-java)
3+
[![BuildStatus](https://travis-ci.org/sendgrid/smtpapi-java.svg?branch=main)](https://travis-ci.org/sendgrid/smtpapi-java)
44
[![Email Notifications Badge](https://dx.sendgrid.com/badge/java)](https://dx.sendgrid.com/newsletter/java)
55
[![Twitter Follow](https://img.shields.io/twitter/follow/sendgrid.svg?style=social&label=Follow)](https://twitter.com/sendgrid)
66
[![GitHub contributors](https://img.shields.io/github/contributors/sendgrid/smtpapi-java.svg)](https://github.com/sendgrid/smtpapi-java/graphs/contributors)
@@ -11,7 +11,7 @@
1111
# Announcements
1212
**The default branch name for this repository has been changed to `main` as of 07/27/2020.**
1313

14-
All updates to this module is documented in our [CHANGELOG](https://github.com/sendgrid/smtpapi-java/blob/master/CHANGELOG.md).
14+
All updates to this module is documented in our [CHANGELOG](CHANGELOG.md).
1515

1616
# Table of Contents
1717
- [Installation](#installation)
@@ -74,7 +74,7 @@ source ./sendgrid.env
7474

7575
## Dependencies
7676

77-
- See [build.gradle](https://github.com/sendgrid/smtpapi-java/blob/master/build.gradle#L47).
77+
- See [pom.xml](pom.xml).
7878

7979
<a name="quick-start"></a>
8080
# Quick Start
@@ -96,7 +96,7 @@ public class Example {
9696
# Usage
9797

9898
- [SendGrid Docs](https://sendgrid.com/docs/API_Reference/SMTP_API/index.html)
99-
- [Example Code](https://github.com/sendgrid/smtpapi-java/tree/master/examples)
99+
- [Example Code](examples)
100100

101101
<a name="roadmap"></a>
102102
# Roadmap
@@ -106,14 +106,14 @@ If you are interested in the future direction of this project, please take a loo
106106
<a name="contribute"></a>
107107
# How to Contribute
108108

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.
110110

111111
Quick links:
112112

113-
- [Feature Request](https://github.com/sendgrid/smtpapi-java/blob/master/CONTRIBUTING.md#feature-request)
114-
- [Bug Reports](https://github.com/sendgrid/smtpapi-java/blob/master/CONTRIBUTING.md#submit-a-bug-report)
115-
- [Improvements to the Codebase](https://github.com/sendgrid/smtpapi-java/blob/master/CONTRIBUTING.md#improvements_to_the_codebase)
116-
- [Review Pull Requests](https://github.com/sendgrid/smtpapi-java/blob/master/CONTRIBUTING.md#code-reviews)
113+
- [Feature Request](CONTRIBUTING.md#feature-request)
114+
- [Bug Reports](CONTRIBUTING.md#submit-a-bug-report)
115+
- [Improvements to the Codebase](CONTRIBUTING.md#improvements_to_the_codebase)
116+
- [Review Pull Requests](CONTRIBUTING.md#code-reviews)
117117

118118
<a name="about"></a>
119119
# About

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<licenses>
1717
<license>
1818
<name>The MIT License (MIT)</name>
19-
<url>https://github.com/sendgrid/smtpapi-java/blob/master/LICENSE</url>
19+
<url>https://github.com/sendgrid/smtpapi-java/blob/HEAD/LICENSE</url>
2020
<distribution>repo</distribution>
2121
</license>
2222
</licenses>

twilio_sendgrid_logo.png

14.3 KB
Loading

0 commit comments

Comments
 (0)