File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
src/test/java/com/sendgrid Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ touch Example.java
69
69
Add the example you want to test to Example.java, including the headers at the top of the file.
70
70
71
71
``` bash
72
- javac -classpath ../repo/com/sendgrid/5.0.0-rc.12 /sendgrid-5.0.0-rc.12 -jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/5.0.0-rc.12 /sendgrid-5.0.0-rc.12 -jar.jar:. Example
72
+ javac -classpath ../repo/com/sendgrid/5.0.0-rc.13 /sendgrid-5.0.0-rc.13 -jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/5.0.0-rc.13 /sendgrid-5.0.0-rc.13 -jar.jar:. Example
73
73
```
74
74
75
75
<a name =" understanding-the-codebase " ></a >
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ Add the following to your build.gradle file in the root of your project.
62
62
...
63
63
dependencies {
64
64
...
65
- implementation 'com.sendgrid:sendgrid-java:5.0.0-rc.12 '
65
+ implementation 'com.sendgrid:sendgrid-java:5.0.0-rc.13 '
66
66
}
67
67
68
68
repositories {
@@ -81,7 +81,7 @@ mvn install
81
81
82
82
You can just drop the jar file in. It's a fat jar - it has all the dependencies built in.
83
83
84
- [ sendgrid-java.jar] ( https://github.com/sendgrid/sendgrid-java/releases/download/5.0.0-rc.12 /sendgrid-java.jar )
84
+ [ sendgrid-java.jar] ( https://github.com/sendgrid/sendgrid-java/releases/download/5.0.0-rc.13 /sendgrid-java.jar )
85
85
86
86
## Dependencies
87
87
Original file line number Diff line number Diff line change 9
9
<groupId >com.sendgrid</groupId >
10
10
<artifactId >sendgrid-java</artifactId >
11
11
<name >Twilio SendGrid Java helper library</name >
12
- <version >5.0.0-rc.12 </version >
12
+ <version >5.0.0-rc.13 </version >
13
13
<description >This Java module allows you to quickly and easily send emails through Twilio SendGrid using Java.</description >
14
14
<url >https://github.com/sendgrid/sendgrid-java</url >
15
15
<licenses >
26
26
<url >https://github.com/sendgrid/sendgrid-java</url >
27
27
<
connection >scm:git:
[email protected] :sendgrid/sendgrid-java.git</
connection >
28
28
<
developerConnection >scm:git:
[email protected] :sendgrid/sendgrid-java.git</
developerConnection >
29
- <tag >5.0.0-rc.12 </tag >
29
+ <tag >5.0.0-rc.13 </tag >
30
30
</scm >
31
31
<profiles >
32
32
<profile >
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ public void testConstructWithClient() throws IOException {
43
43
@ Test
44
44
public void testLibraryVersion () {
45
45
SendGrid sg = new SendGrid (SENDGRID_API_KEY );
46
- Assert .assertEquals (sg .getLibraryVersion (), "5.0.0-rc.12 " );
46
+ Assert .assertEquals (sg .getLibraryVersion (), "5.0.0-rc.13 " );
47
47
}
48
48
49
49
@ Test
You can’t perform that action at this time.
0 commit comments