File tree 3 files changed +60
-6
lines changed
3 files changed +60
-6
lines changed Original file line number Diff line number Diff line change 13
13
# See the License for the specific language governing permissions and
14
14
# limitations under the License.
15
15
16
- FROM openjdk:7-alpine
16
+ # FROM openjdk:7-alpine
17
+ # Reverted to debian yet alpine does not include jdk9
18
+ FROM openjdk:7-jdk
19
+
20
+ # Require while jdk9 is unstable on debian
21
+ RUN echo 'deb http://deb.debian.org/debian unstable main' >> /etc/apt/sources.list
17
22
18
23
RUN set -ex \
19
24
&& mkdir /src \
20
- && apk update \
21
- && apk add curl \
22
- && mkdir /opt \
25
+ && apt-get update \
26
+ && apt-get install -y \
27
+ curl \
28
+ openjdk-9-jdk-headless \
29
+ && ln -svT "/usr/lib/jvm/java-9-openjdk-$(dpkg --print-architecture)" /docker-java-9-home \
23
30
&& cd /opt \
24
- && curl -fsSL http://www-us.apache.org/dist/maven/maven-3/3.3.9 /binaries/apache-maven-3.3.9 -bin.tar.gz -o maven.tar.gz \
31
+ && curl -fsSL http://www-us.apache.org/dist/maven/maven-3/3.5.0 /binaries/apache-maven-3.5.0 -bin.tar.gz -o maven.tar.gz \
25
32
&& tar -xzf maven.tar.gz \
26
33
&& rm -f maven.tar.gz
34
+
27
35
COPY . /src
36
+
28
37
RUN set -ex \
29
38
&& cd /src \
30
- && /opt/apache-maven-3.3.9 /bin/mvn verify
39
+ && /opt/apache-maven-3.5.0 /bin/mvn verify --global-toolchains toolchains-docker.xml
Original file line number Diff line number Diff line change 31
31
- "remove" - Removed
32
32
-->
33
33
<release version =" 2.9.0" date =" 2017-MM-DD" description =" GA Release 2.9.0" >
34
+ <action issue =" LOG4J2-1950" dev =" ggregory" type =" update" due-to =" Pierrick HYMBERT" >
35
+ Fix docker build with jdk9 requirements (#84).
36
+ </action >
34
37
<action issue =" LOG4J2-1801" dev =" rpopma" type =" update" >
35
38
Add more detail to WARN "Ignoring log event" messages printed to the console after log4j was shut down.
36
39
</action >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF8" ?>
2
+ <!--
3
+ ~ Licensed to the Apache Software Foundation (ASF) under one or more
4
+ ~ contributor license agreements. See the NOTICE file distributed with
5
+ ~ this work for additional information regarding copyright ownership.
6
+ ~ The ASF licenses this file to You under the Apache license, Version 2.0
7
+ ~ (the "License"); you may not use this file except in compliance with
8
+ ~ the License. You may obtain a copy of the License at
9
+ ~
10
+ ~ http://www.apache.org/licenses/LICENSE-2.0
11
+ ~
12
+ ~ Unless required by applicable law or agreed to in writing, software
13
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
14
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ ~ See the license for the specific language governing permissions and
16
+ ~ limitations under the license.
17
+ -->
18
+ <toolchains >
19
+ <!-- JDK toolchains -->
20
+ <toolchain >
21
+ <type >jdk</type >
22
+ <provides >
23
+ <version >1.7</version >
24
+ <vendor >sun</vendor >
25
+ </provides >
26
+ <configuration >
27
+ <jdkHome >/docker-java-home</jdkHome >
28
+ </configuration >
29
+ </toolchain >
30
+ <toolchain >
31
+ <type >jdk</type >
32
+ <provides >
33
+ <version >9</version >
34
+ <vendor >sun</vendor >
35
+ </provides >
36
+ <configuration >
37
+ <jdkHome >/docker-java-9-home</jdkHome >
38
+ </configuration >
39
+ </toolchain >
40
+
41
+ <!-- other toolchains -->
42
+ </toolchains >
You can’t perform that action at this time.
0 commit comments