You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2019/08/29 12:56:00 UTC

[flink] branch java11_test updated (394bd4b -> 343e7a6)

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

chesnay pushed a change to branch java11_test
in repository https://gitbox.apache.org/repos/asf/flink.git.


 discard 394bd4b  hide download stuff
     new ae4791d  hide download stuff
     new 343e7a6  [s3] add jaxb test dependency

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   (394bd4b)
            \
             N -- N -- N   refs/heads/java11_test (343e7a6)

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 2 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:
 flink-filesystems/flink-fs-hadoop-shaded/pom.xml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)


[flink] 01/02: hide download stuff

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

chesnay pushed a commit to branch java11_test
in repository https://gitbox.apache.org/repos/asf/flink.git

commit ae4791d9e009ee7e07907b0968aabb5bc44dddc7
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Wed Aug 28 15:33:21 2019 +0200

    hide download stuff
---
 tools/travis_controller.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/travis_controller.sh b/tools/travis_controller.sh
index a0da514..ee12f5e 100755
--- a/tools/travis_controller.sh
+++ b/tools/travis_controller.sh
@@ -95,7 +95,7 @@ EXIT_CODE=0
 
 # Run actual compile&test steps
 if [ $STAGE == "$STAGE_COMPILE" ]; then
-	MVN="mvn clean install -nsu -Dflink.convergence.phase=install -Pcheck-convergence -Dflink.forkCount=2 -Dflink.forkCountTestPackage=2 -Dmaven.javadoc.skip=true -B -DskipTests $PROFILE"
+	MVN="mvn clean install -nsu -Dflink.convergence.phase=install -Pcheck-convergence -Dflink.forkCount=2 -Dflink.forkCountTestPackage=2 -Dmaven.javadoc.skip=true -B -DskipTests $PROFILE -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn"
 	$MVN
 	EXIT_CODE=$?
 


[flink] 02/02: [s3] add jaxb test dependency

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

chesnay pushed a commit to branch java11_test
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 343e7a652789ec5c757543510eb36f0266f30d8f
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Thu Aug 29 14:54:28 2019 +0200

    [s3] add jaxb test dependency
---
 flink-filesystems/flink-fs-hadoop-shaded/pom.xml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/flink-filesystems/flink-fs-hadoop-shaded/pom.xml b/flink-filesystems/flink-fs-hadoop-shaded/pom.xml
index 5a47cea..e72261b 100644
--- a/flink-filesystems/flink-fs-hadoop-shaded/pom.xml
+++ b/flink-filesystems/flink-fs-hadoop-shaded/pom.xml
@@ -260,4 +260,22 @@ under the License.
 			</plugin>
 		</plugins>
 	</build>
+
+	<profiles>
+		<profile>
+			<id>java11</id>
+			<activation>
+				<jdk>11</jdk>
+			</activation>
+			<dependencies>
+				<dependency>
+					<!-- Hadoop requires jaxb-api for javax.xml.bind.JAXBException -->
+					<groupId>javax.xml.bind</groupId>
+					<artifactId>jaxb-api</artifactId>
+					<version>2.3.0</version>
+					<scope>test</scope>
+				</dependency>
+			</dependencies>
+		</profile>
+	</profiles>
 </project>