File tree 3 files changed +14
-16
lines changed
spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests
src/test/resources/conf/Ubuntu
3 files changed +14
-16
lines changed Original file line number Diff line number Diff line change 12
12
<description >Spring Boot Launch Script Integration Tests</description >
13
13
<properties >
14
14
<main .basedir>${basedir} /../../..</main .basedir>
15
- <jersey .version>2.23.1 </jersey .version>
15
+ <jersey .version>2.27 </jersey .version>
16
16
</properties >
17
17
<dependencies >
18
18
<dependency >
32
32
<dependency >
33
33
<groupId >com.github.docker-java</groupId >
34
34
<artifactId >docker-java</artifactId >
35
- <version >3.0.14 </version >
35
+ <version >3.1.2 </version >
36
36
<scope >test</scope >
37
37
</dependency >
38
38
<dependency >
Original file line number Diff line number Diff line change 1
1
FROM ubuntu:trusty-20160914
2
2
RUN apt-get update && \
3
- apt-get install -y software-properties-common && \
4
- add-apt-repository ppa:webupd8team/java -y && \
5
- apt-get update && \
6
- echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections && \
7
- apt-get install -y oracle-java8-installer && \
8
- apt-get install -y curl && \
9
- apt-get clean
3
+ apt-get install -y software-properties-common curl && \
4
+ mkdir -p /opt/openjdk && \
5
+ cd /opt/openjdk && \
6
+ curl -L https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u202-b08/OpenJDK8U-jdk_x64_linux_hotspot_8u202b08.tar.gz | tar zx --strip-components=1
7
+ ENV JAVA_HOME /opt/openjdk
8
+ ENV PATH $JAVA_HOME/bin:$PATH
Original file line number Diff line number Diff line change 1
1
FROM ubuntu:xenial-20160914
2
2
RUN apt-get update && \
3
- apt-get install -y software-properties-common && \
4
- add-apt-repository ppa:webupd8team/java -y && \
5
- apt-get update && \
6
- echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections && \
7
- apt-get install -y oracle-java8-installer && \
8
- apt-get install -y curl && \
9
- apt-get clean
3
+ apt-get install -y software-properties-common curl && \
4
+ mkdir -p /opt/openjdk && \
5
+ cd /opt/openjdk && \
6
+ curl -L https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u202-b08/OpenJDK8U-jdk_x64_linux_hotspot_8u202b08.tar.gz | tar zx --strip-components=1
7
+ ENV JAVA_HOME /opt/openjdk
8
+ ENV PATH $JAVA_HOME/bin:$PATH
You can’t perform that action at this time.
0 commit comments