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 2022/01/29 03:42:25 UTC

[logging-log4j2] 01/03: Remove unused docker files

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

commit f29ce59e768717951514d1f1d506c879fe821006
Author: Matt Sicker <ma...@apache.org>
AuthorDate: Fri Jan 28 21:23:01 2022 -0600

    Remove unused docker files
    
    Signed-off-by: Matt Sicker <ma...@apache.org>
---
 .dockerignore         | 27 ---------------------------
 Dockerfile            | 29 -----------------------------
 toolchains-docker.xml | 39 ---------------------------------------
 3 files changed, 95 deletions(-)

diff --git a/.dockerignore b/.dockerignore
deleted file mode 100644
index 627e878..0000000
--- a/.dockerignore
+++ /dev/null
@@ -1,27 +0,0 @@
-# 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.
-
-.project
-.idea
-**/*.iml
-**/target
-target/
-.settings
-.classpath
-.cache-main
-.cache-tests
-velocity.log
-felix-cache/
-bin/
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 540d028..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,29 +0,0 @@
-# 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.
-
-FROM openjdk:8
-
-RUN set -ex \
-    && apt-get update \
-    && apt-get install -y openjdk-11-jdk-headless \
-    && ln -svT "/usr/lib/jvm/java-11-openjdk-$(dpkg --print-architecture)" /usr/local/openjdk-11
-
-VOLUME /src /root/.m2/repository
-
-COPY . /src
-
-RUN set -ex \
-    && cd /src \
-    && ./mvnw --toolchains toolchains-docker.xml install
diff --git a/toolchains-docker.xml b/toolchains-docker.xml
deleted file mode 100644
index 3f924a2..0000000
--- a/toolchains-docker.xml
+++ /dev/null
@@ -1,39 +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>
-  <toolchain>
-    <type>jdk</type>
-    <provides>
-      <version>1.8</version>
-      <vendor>openjdk</vendor>
-    </provides>
-    <configuration>
-      <jdkHome>/usr/local/openjdk-8</jdkHome>
-    </configuration>
-  </toolchain>
-  <toolchain>
-    <type>jdk</type>
-    <provides>
-      <version>11</version>
-      <vendor>openjdk</vendor>
-    </provides>
-    <configuration>
-      <jdkHome>/usr/local/openjdk-11</jdkHome>
-    </configuration>
-  </toolchain>
-</toolchains>