You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2019/01/19 10:40:48 UTC

[httpcomponents-client] branch java11-compatibility updated (7269e7b -> 4b83e1a)

This is an automated email from the ASF dual-hosted git repository.

olegk pushed a change to branch java11-compatibility
in repository https://gitbox.apache.org/repos/asf/httpcomponents-client.git.


 discard 7269e7b  Added oraclejdk8 and openjdk11 to Travis-CI build matrix
     new 4b83e1a  Added oraclejdk8 and openjdk11 to Travis-CI build matrix

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (7269e7b)
            \
             N -- N -- N   refs/heads/java11-compatibility (4b83e1a)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[httpcomponents-client] 01/01: Added oraclejdk8 and openjdk11 to Travis-CI build matrix

Posted by ol...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

olegk pushed a commit to branch java11-compatibility
in repository https://gitbox.apache.org/repos/asf/httpcomponents-client.git

commit 4b83e1aa45a56af27d2f13f006d067a88b66d97d
Author: Oleg Kalnichevski <ol...@apache.org>
AuthorDate: Sat Jan 19 10:50:27 2019 +0100

    Added oraclejdk8 and openjdk11 to Travis-CI build matrix
---
 .travis.yml |  2 ++
 pom.xml     | 38 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index 9b6c70b..412a660 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,6 +18,8 @@ sudo: false
 
 jdk:
   - openjdk7
+  - oraclejdk8
+  - openjdk11
 
 after_success:
   - mvn clean cobertura:cobertura coveralls:report
diff --git a/pom.xml b/pom.xml
index b986f9e..4a72470 100644
--- a/pom.xml
+++ b/pom.xml
@@ -407,4 +407,42 @@
     </plugins>
   </reporting>
 
+  <!-- remove once 'ignore' configuration can be configured through HC Parent -->
+  <profiles>
+    <profile>
+      <id>animal-sniffer</id>
+      <activation>
+        <file>
+          <missing>src/site/resources/profile.noanimal</missing>
+        </file>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>animal-sniffer-maven-plugin</artifactId>
+            <version>${hc.animal-sniffer.version}</version>
+            <executions>
+              <execution>
+                <id>checkAPIcompatibility</id>
+                <goals>
+                  <goal>check</goal>
+                </goals>
+              </execution>
+            </executions>
+            <configuration>
+              <signature>
+                <groupId>org.codehaus.mojo.signature</groupId>
+                <artifactId>java16</artifactId>
+                <version>1.1</version>
+              </signature>
+              <ignores>java.*</ignores>
+            </configuration>
+          </plugin>
+
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
 </project>