You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2020/08/15 19:54:48 UTC

[logging-log4j2] branch master updated: Remove Travis config

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

mattsicker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/master by this push:
     new 445fcb5  Remove Travis config
445fcb5 is described below

commit 445fcb5f2ad6ec02729463936be76cfb301f7c06
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Sat Aug 15 14:46:16 2020 -0500

    Remove Travis config
---
 .travis-toolchains.xml | 42 ------------------------------------------
 .travis.yml            | 34 ----------------------------------
 2 files changed, 76 deletions(-)

diff --git a/.travis-toolchains.xml b/.travis-toolchains.xml
deleted file mode 100644
index e341594..0000000
--- a/.travis-toolchains.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<?xml version="1.0" encoding="UTF8"?>
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one or more
-  ~ contributor license agreements. See the NOTICE file distributed with
-  ~ this work for additional information regarding copyright ownership.
-  ~ The ASF licenses this file to You under the Apache license, Version 2.0
-  ~ (the "License"); you may not use this file except in compliance with
-  ~ the License. You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the license for the specific language governing permissions and
-  ~ limitations under the license.
-  -->
-<toolchains xmlns="http://maven.apache.org/TOOLCHAINS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/TOOLCHAINS/1.1.0 http://maven.apache.org/xsd/toolchains-1.1.0.xsd">
-  <toolchain>
-    <type>jdk</type>
-    <provides>
-      <id>java8</id>
-      <version>1.8</version>
-      <vendor>oracle</vendor>
-    </provides>
-    <configuration>
-      <jdkHome>/usr/lib/jvm/java-8-openjdk-amd64</jdkHome>
-    </configuration>
-  </toolchain>
-  <toolchain>
-    <type>jdk</type>
-    <provides>
-      <id>java11</id>
-      <version>11</version>
-      <vendor>oracle</vendor>
-    </provides>
-    <configuration>
-      <jdkHome>/usr/local/lib/jvm/openjdk11</jdkHome>
-    </configuration>
-  </toolchain>
-</toolchains>
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 23cba96..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-#   Licensed under the Apache License, Version 2.0 (the "License");
-#   you may not use this file except in compliance with the License.
-#   You may obtain a copy of the License at
-#
-#       http://www.apache.org/licenses/LICENSE-2.0
-#
-#   Unless required by applicable law or agreed to in writing, software
-#   distributed under the License is distributed on an "AS IS" BASIS,
-#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-#   See the License for the specific language governing permissions and
-#   limitations under the License.
-
-language: java
-dist: xenial
-jdk:
-  - openjdk8
-
-env:
-  global:
-    JAVA_OPTS=-Xmx4g
-
-cache:
-  directories:
-    - "$HOME/.m2"
-before_cache:
-  - rm -rf $HOME/.m2/repository/org/apache/logging/log4j
-
-install: skip
-
-script:
-  - mvn -t .travis-toolchains.xml install -B -V
-
-after_success:
-  - mvn -t .travis-toolchains.xml -pl !log4j-bom jacoco:prepare-agent test jacoco:report coveralls:report -B -V