Skip to content

Commit fabb092

Browse files
committed
Upgrade to 0.1.0 and now just is com.github.sendgrid instead of com.github.scottmotte.sendgrid
1 parent c82ee86 commit fabb092

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This Java module allows you to quickly and easily send emails through SendGrid using Java.
44

55
```java
6-
import com.github.scottmotte.sendgrid.SendGrid;
6+
import com.github.sendgrid.SendGrid;
77
SendGrid sendgrid = new SendGrid("sendgrid_username", "sendgrid_password");
88

99
sendgrid.addTo("[email protected]");
@@ -29,12 +29,12 @@ repositories {
2929
mavenCentral()
3030
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
3131
name = 'GitHub'
32-
addArtifactPattern 'https://github.com/scottmotte/sendgrid-java/raw/v[revision]/repo/com/github/scottmotte/sendgrid/[revision]/sendgrid-[revision]-jar.jar'
32+
addArtifactPattern 'https://github.com/sendgrid/sendgrid-java/raw/v[revision]/repo/com/github/sendgrid/[revision]/sendgrid-[revision]-jar.jar'
3333
}
3434
}
3535
dependencies {
3636
...
37-
compile 'com.github.scottmotte:sendgrid:0.0.8'
37+
compile 'com.github.sendgrid:sendgrid:0.0.8'
3838
}
3939
4040
...
@@ -43,29 +43,29 @@ dependencies {
4343
Then import the library - in the file appropriate to your Java project.
4444

4545
```java
46-
import com.github.scottmotte.sendgrid.SendGrid;
46+
import com.github.sendgrid.SendGrid;
4747
```
4848

4949
### via copy/paste
5050

51-
Copy and paste the [SendGrid.java](https://github.com/scottmotte/sendgrid-java/blob/master/src/main/java/com/github/scottmotte/sendgrid/SendGrid.java) file into your project. That file is available here: [https://github.com/scottmotte/sendgrid-java/blob/master/src/main/java/com/github/scottmotte/sendgrid/SendGrid.java](https://github.com/scottmotte/sendgrid-java/blob/master/src/main/java/com/github/scottmotte/sendgrid/SendGrid.java)
51+
Copy and paste the [SendGrid.java](https://github.com/sendgrid/sendgrid-java/blob/master/src/main/java/com/github/sendgrid/SendGrid.java) file into your project. That file is available here: [https://github.com/sendgrid/sendgrid-java/blob/master/src/main/java/com/github/sendgrid/SendGrid.java](https://github.com/sendgrid/sendgrid-java/blob/master/src/main/java/com/github/sendgrid/SendGrid.java)
5252

5353
Then import the library - in the file appropriate to your Java project.
5454

5555
```java
56-
import com.github.scottmotte.sendgrid.SendGrid;
56+
import com.github.sendgrid.SendGrid;
5757
```
5858

5959
### via Maven
6060

61-
I'd like to get this on Maven. Please [create an issue](https://github.com/scottmotte/sendgrid-java/issues/new) if you'd like to see it on Maven as well.
61+
I'd like to get this on Maven. Please [create an issue](https://github.com/sendgrid/sendgrid-java/issues/new) if you'd like to see it on Maven as well.
6262

6363
## Usage
6464

6565
To begin using this library, initialize the SendGrid object with your SendGrid credentials.
6666

6767
```java
68-
import com.github.scottmotte.sendgrid.SendGrid;
68+
import com.github.sendgrid.SendGrid;
6969
SendGrid sendgrid = new SendGrid("sendgrid_username", "sendgrid_password");
7070
```
7171

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apply plugin: 'fatjar'
22

3-
version = "0.0.8"
3+
version = "0.1.0"
44

55
buildscript {
66
dependencies {
@@ -33,9 +33,9 @@ fatJar {
3333
// copy fatJar to base project directory so they will be in git (and on github for download)
3434
build << {
3535
copy {
36-
println "Copying ${fatJar.archiveName} to $projectDir/repo/com/github/scottmotte/sendgrid/$version"
36+
println "Copying ${fatJar.archiveName} to $projectDir/repo/com/github/sendgrid/$version"
3737
from("$buildDir/libs/${fatJar.archiveName}")
38-
into("$projectDir/repo/com/github/scottmotte/sendgrid/$version")
38+
into("$projectDir/repo/com/github/sendgrid/$version")
3939
}
4040
}
4141

0 commit comments

Comments
 (0)