Skip to content

Commit 7ceea70

Browse files
committed
ugrade gradle to v4 and raml-cop to v5.
This is a big bump for gradle, projects which utilize this version will likely need to upgrade their plugins and check their build still works.
1 parent cfc9964 commit 7ceea70

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN apk update && \
1515
pip install --upgrade pip && \
1616
pip install transifex-client && \
1717
mkdir bin && \
18-
npm install -g raml-cop@3.0.0 && \
18+
npm install -g raml-cop@5.0.0 && \
1919
/bin/sh install_gradle.sh
2020

2121
WORKDIR /app

install_gradle.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
wget -O gradle.zip http://services.gradle.org/distributions/gradle-2.13-bin.zip
3+
wget -O gradle.zip http://services.gradle.org/distributions/gradle-4.0-bin.zip
44
unzip gradle.zip
55
rm gradle.zip
6-
ln -s "$HOME/gradle-2.13/bin/gradle" /sbin/gradle
6+
ln -s "$HOME/gradle-4.0/bin/gradle" /sbin/gradle

0 commit comments

Comments
 (0)