Skip to content

Commit d1ea634

Browse files
committed
Release 4.3.0
1 parent fb9d42a commit d1ea634

File tree

2 files changed

+148
-148
lines changed

2 files changed

+148
-148
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ All updates to this project is documented in our [CHANGELOG](https://github.com/
4040
...
4141
dependencies {
4242
...
43-
compile 'com.sendgrid:java-http-client:4.2.0'
43+
compile 'com.sendgrid:java-http-client:4.3.0'
4444
}
4545
4646
repositories {
@@ -55,7 +55,7 @@ repositories {
5555
<dependency>
5656
<groupId>com.sendgrid</groupId>
5757
<artifactId>java-http-client</artifactId>
58-
<version>4.2.0</version>
58+
<version>4.3.0</version>
5959
</dependency>
6060
```
6161

@@ -139,7 +139,7 @@ cd examples
139139
javac -classpath {path_to}/sendgrid-java-http-client-4.0.0-jar.jar:. Example.java && java -classpath {path_to}/sendgrid-java-http-client-4.0.0-jar.jar:. Example
140140
```
141141

142-
## Environment Variables
142+
## Environment Variables
143143

144144
You can do the following to create a .env file:
145145

pom.xml

Lines changed: 145 additions & 145 deletions
Original file line numberDiff line numberDiff line change
@@ -1,146 +1,146 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<parent>
5-
<groupId>org.sonatype.oss</groupId>
6-
<artifactId>oss-parent</artifactId>
7-
<version>7</version>
8-
</parent>
9-
<groupId>com.sendgrid</groupId>
10-
<artifactId>java-http-client</artifactId>
11-
<packaging>jar</packaging>
12-
<name>A simple HTTP client</name>
13-
<description>HTTP REST client, simplified for Java</description>
14-
<version>4.2.0</version>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>org.sonatype.oss</groupId>
6+
<artifactId>oss-parent</artifactId>
7+
<version>7</version>
8+
</parent>
9+
<groupId>com.sendgrid</groupId>
10+
<artifactId>java-http-client</artifactId>
11+
<packaging>jar</packaging>
12+
<name>A simple HTTP client</name>
13+
<description>HTTP REST client, simplified for Java</description>
14+
<version>4.3.0</version>
15+
<url>https://github.com/sendgrid/java-http-client</url>
16+
<licenses>
17+
<license>
18+
<name>The MIT License (MIT)</name>
19+
<url>https://github.com/sendgrid/java-http-client/blob/master/LICENSE</url>
20+
<distribution>repo</distribution>
21+
</license>
22+
</licenses>
23+
<scm>
1524
<url>https://github.com/sendgrid/java-http-client</url>
16-
<licenses>
17-
<license>
18-
<name>The MIT License (MIT)</name>
19-
<url>https://github.com/sendgrid/java-http-client/blob/master/LICENSE</url>
20-
<distribution>repo</distribution>
21-
</license>
22-
</licenses>
23-
<scm>
24-
<url>https://github.com/sendgrid/java-http-client</url>
25-
<connection>scm:git:[email protected]:sendgrid/java-http-client.git</connection>
26-
<developerConnection>scm:git:[email protected]:sendgrid/java-http-client.git</developerConnection>
27-
<tag>HEAD</tag>
28-
</scm>
29-
<properties>
30-
<maven.compiler.source>1.8</maven.compiler.source>
31-
<maven.compiler.target>1.8</maven.compiler.target>
32-
</properties>
33-
<dependencies>
34-
<dependency>
35-
<groupId>junit</groupId>
36-
<artifactId>junit-dep</artifactId>
37-
<version>4.10</version>
38-
<scope>test</scope>
39-
</dependency>
40-
<dependency>
41-
<groupId>org.mockito</groupId>
42-
<artifactId>mockito-core</artifactId>
43-
<version>1.10.19</version>
44-
<scope>test</scope>
45-
</dependency>
46-
<dependency>
47-
<groupId>org.apache.httpcomponents</groupId>
48-
<artifactId>httpcore</artifactId>
49-
<version>4.4.12</version>
50-
</dependency>
51-
<dependency>
52-
<groupId>org.apache.httpcomponents</groupId>
53-
<artifactId>httpclient</artifactId>
54-
<version>4.5.10</version>
55-
</dependency>
56-
</dependencies>
57-
<build>
58-
<plugins>
59-
<plugin>
60-
<groupId>org.jacoco</groupId>
61-
<artifactId>jacoco-maven-plugin</artifactId>
62-
<version>0.7.7.201606060606</version>
63-
<executions>
64-
<execution>
65-
<goals>
66-
<goal>prepare-agent</goal>
67-
</goals>
68-
</execution>
69-
<execution>
70-
<id>report</id>
71-
<phase>test</phase>
72-
<goals>
73-
<goal>report</goal>
74-
</goals>
75-
</execution>
76-
</executions>
77-
</plugin>
78-
<plugin>
79-
<groupId>org.apache.maven.plugins</groupId>
80-
<artifactId>maven-compiler-plugin</artifactId>
81-
<version>3.8.1</version>
82-
<configuration>
83-
<source>1.8</source>
84-
<target>1.8</target>
85-
</configuration>
86-
</plugin>
87-
<plugin>
88-
<groupId>org.apache.maven.plugins</groupId>
89-
<artifactId>maven-release-plugin</artifactId>
90-
<version>2.4.2</version>
91-
<dependencies>
92-
<dependency>
93-
<groupId>org.apache.maven.scm</groupId>
94-
<artifactId>maven-scm-provider-gitexe</artifactId>
95-
<version>1.8.1</version>
96-
</dependency>
97-
</dependencies>
98-
</plugin>
99-
<plugin>
100-
<groupId>org.apache.maven.plugins</groupId>
101-
<artifactId>maven-source-plugin</artifactId>
102-
<version>2.2.1</version>
103-
<executions>
104-
<execution>
105-
<id>attach-sources</id>
106-
<goals>
107-
<goal>jar</goal>
108-
</goals>
109-
</execution>
110-
</executions>
111-
</plugin>
112-
<plugin>
113-
<groupId>org.apache.maven.plugins</groupId>
114-
<artifactId>maven-javadoc-plugin</artifactId>
115-
<version>2.9.1</version>
116-
<executions>
117-
<execution>
118-
<id>attach-javadocs</id>
119-
<goals>
120-
<goal>jar</goal>
121-
</goals>
122-
</execution>
123-
</executions>
124-
</plugin>
125-
<plugin>
126-
<groupId>org.apache.maven.plugins</groupId>
127-
<artifactId>maven-assembly-plugin</artifactId>
128-
<version>3.1.1</version>
129-
<configuration>
130-
<descriptorRefs>
131-
<descriptorRef>jar-with-dependencies</descriptorRef>
132-
</descriptorRefs>
133-
</configuration>
134-
<executions>
135-
<execution>
136-
<id>make-assembly</id>
137-
<phase>package</phase>
138-
<goals>
139-
<goal>single</goal>
140-
</goals>
141-
</execution>
142-
</executions>
143-
</plugin>
144-
</plugins>
145-
</build>
146-
</project>
25+
<connection>scm:git:[email protected]:sendgrid/java-http-client.git</connection>
26+
<developerConnection>scm:git:[email protected]:sendgrid/java-http-client.git</developerConnection>
27+
<tag>4.3.0</tag>
28+
</scm>
29+
<properties>
30+
<maven.compiler.source>1.8</maven.compiler.source>
31+
<maven.compiler.target>1.8</maven.compiler.target>
32+
</properties>
33+
<dependencies>
34+
<dependency>
35+
<groupId>junit</groupId>
36+
<artifactId>junit-dep</artifactId>
37+
<version>4.10</version>
38+
<scope>test</scope>
39+
</dependency>
40+
<dependency>
41+
<groupId>org.mockito</groupId>
42+
<artifactId>mockito-core</artifactId>
43+
<version>1.10.19</version>
44+
<scope>test</scope>
45+
</dependency>
46+
<dependency>
47+
<groupId>org.apache.httpcomponents</groupId>
48+
<artifactId>httpcore</artifactId>
49+
<version>4.4.12</version>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.apache.httpcomponents</groupId>
53+
<artifactId>httpclient</artifactId>
54+
<version>4.5.10</version>
55+
</dependency>
56+
</dependencies>
57+
<build>
58+
<plugins>
59+
<plugin>
60+
<groupId>org.jacoco</groupId>
61+
<artifactId>jacoco-maven-plugin</artifactId>
62+
<version>0.7.7.201606060606</version>
63+
<executions>
64+
<execution>
65+
<goals>
66+
<goal>prepare-agent</goal>
67+
</goals>
68+
</execution>
69+
<execution>
70+
<id>report</id>
71+
<phase>test</phase>
72+
<goals>
73+
<goal>report</goal>
74+
</goals>
75+
</execution>
76+
</executions>
77+
</plugin>
78+
<plugin>
79+
<groupId>org.apache.maven.plugins</groupId>
80+
<artifactId>maven-compiler-plugin</artifactId>
81+
<version>3.8.1</version>
82+
<configuration>
83+
<source>1.8</source>
84+
<target>1.8</target>
85+
</configuration>
86+
</plugin>
87+
<plugin>
88+
<groupId>org.apache.maven.plugins</groupId>
89+
<artifactId>maven-release-plugin</artifactId>
90+
<version>2.4.2</version>
91+
<dependencies>
92+
<dependency>
93+
<groupId>org.apache.maven.scm</groupId>
94+
<artifactId>maven-scm-provider-gitexe</artifactId>
95+
<version>1.8.1</version>
96+
</dependency>
97+
</dependencies>
98+
</plugin>
99+
<plugin>
100+
<groupId>org.apache.maven.plugins</groupId>
101+
<artifactId>maven-source-plugin</artifactId>
102+
<version>2.2.1</version>
103+
<executions>
104+
<execution>
105+
<id>attach-sources</id>
106+
<goals>
107+
<goal>jar</goal>
108+
</goals>
109+
</execution>
110+
</executions>
111+
</plugin>
112+
<plugin>
113+
<groupId>org.apache.maven.plugins</groupId>
114+
<artifactId>maven-javadoc-plugin</artifactId>
115+
<version>2.9.1</version>
116+
<executions>
117+
<execution>
118+
<id>attach-javadocs</id>
119+
<goals>
120+
<goal>jar</goal>
121+
</goals>
122+
</execution>
123+
</executions>
124+
</plugin>
125+
<plugin>
126+
<groupId>org.apache.maven.plugins</groupId>
127+
<artifactId>maven-assembly-plugin</artifactId>
128+
<version>3.1.1</version>
129+
<configuration>
130+
<descriptorRefs>
131+
<descriptorRef>jar-with-dependencies</descriptorRef>
132+
</descriptorRefs>
133+
</configuration>
134+
<executions>
135+
<execution>
136+
<id>make-assembly</id>
137+
<phase>package</phase>
138+
<goals>
139+
<goal>single</goal>
140+
</goals>
141+
</execution>
142+
</executions>
143+
</plugin>
144+
</plugins>
145+
</build>
146+
</project>

0 commit comments

Comments
 (0)