Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit cee65be

Browse files
authored
sonar-scala 8.0.0 & SonarQube 8.1 (#22)
1 parent 4cd3bb3 commit cee65be

File tree

12 files changed

+76
-61
lines changed

12 files changed

+76
-61
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ logs/
22
.idea
33
*.jar
44
*.orig
5+
.metals

README.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# sonar-scala-docker
22

3-
[![GitHub version](https://img.shields.io/badge/release-v3.7.0-blue.svg)](https://github.com/mwz/sonarqube-scala-docker/releases)
3+
[![GitHub version](https://img.shields.io/badge/release-v5.0.0-blue.svg)](https://github.com/mwz/sonarqube-scala-docker/releases)
44
[![GitHub version lts](<https://img.shields.io/badge/release_(for_SonarQube_LTS_7.9)-v4.2.0-blue.svg>)](https://github.com/mwz/sonarqube-scala-docker/releases)
55
[![GitHub version lts 6.7](<https://img.shields.io/badge/release_(for_SonarQube_LTS_6.7)-v2.12.0-blue.svg>)](https://github.com/mwz/sonarqube-scala-docker/releases)
66
[![Docker Pulls](https://img.shields.io/docker/pulls/mwizner/sonarqube-scala-plugins.svg)](https://hub.docker.com/r/mwizner/sonarqube-scala-plugins)
77

88
Docker images and docker-compose recipes for out-of-the-box
9-
[SonarQube 6.7 LTS](https://www.sonarqube.org/sonarqube-6-7-lts) and
10-
[SonarQube 7.9 LTS](https://www.sonarqube.org/sonarqube-7-9-lts) instance with
11-
support for [Scala](http://www.scala-lang.org),
9+
[SonarQube 6.7 LTS](https://www.sonarqube.org/sonarqube-6-7-lts),
10+
[SonarQube 7.9 LTS](https://www.sonarqube.org/sonarqube-7-9-lts) and
11+
[SonarQube 8.1](https://www.sonarqube.org/sonarqube-8-1) instance with support
12+
for [Scala](http://www.scala-lang.org),
1213
[Scoverage](https://github.com/scoverage/scalac-scoverage-plugin) (code coverage
1314
metrics) and [Scalastyle](http://www.scalastyle.org) +
1415
[Scapegoat](https://github.com/sksamuel/scapegoat) (static code analysis).
@@ -34,7 +35,7 @@ default SonarQube login details for the Administrator account are `admin:admin`.
3435

3536
You can also use a standalone docker image which contains SonarQube server with
3637
bundled sonar-scala plugin,
37-
[`mwizner/sonarqube-scala-plugins:3.7.0-full`](https://hub.docker.com/r/mwizner/sonarqube-scala-plugins)(or
38+
[`mwizner/sonarqube-scala-plugins:5.0.0-full`](https://hub.docker.com/r/mwizner/sonarqube-scala-plugins)(or
3839
`mwizner/sonarqube-scala-plugins:latest-full`) and
3940
[`mwizner/sonarqube-scala-plugins:4.2.0-full`](https://hub.docker.com/r/mwizner/sonarqube-scala-plugins)
4041
(or `mwizner/sonarqube-scala-plugins:latest-lts-full`) for the current LTS
@@ -53,7 +54,7 @@ docker run -d \
5354
-e SONARQUBE_JDBC_USERNAME=sonar \
5455
-e SONARQUBE_JDBC_PASSWORD=sonar \
5556
-e SONARQUBE_JDBC_URL=jdbc:postgresql://localhost/sonar \
56-
mwizner/sonarqube-scala-plugins:3.7.0-full
57+
mwizner/sonarqube-scala-plugins:5.0.0-full
5758
```
5859

5960
Please note that if you don't specify the `SONARQUBE_JDBC_URL` variable,
@@ -65,13 +66,14 @@ want to try the image, you can use the following command:
6566
docker run -d \
6667
--name sonarqube-scala-plugins-full \
6768
-p 80:9000 \
68-
mwizner/sonarqube-scala-plugins:3.7.0-full
69+
mwizner/sonarqube-scala-plugins:5.0.0-full
6970
```
7071

7172
## Dependencies
7273

7374
- [SonarQube 6.7 LTS](https://hub.docker.com/_/sonarqube) /
74-
[SonarQube 7.9 LTS](https://hub.docker.com/_/sonarqube)
75+
[SonarQube 7.9 LTS](https://hub.docker.com/_/sonarqube) /
76+
[SonarQube 8.1 LTS](https://hub.docker.com/_/sonarqube)
7577
- [PostgreSQL 10](https://hub.docker.com/_/postgres)
7678
- [mwz/sonar-scala](https://github.com/mwz/sonar-scala) - provides support for
7779
scalastyle, scoverage and scapegoat
@@ -85,7 +87,7 @@ scapegoat support)_
8587
<!-- prettier-ignore-start -->
8688
|Version | SonarQube | sonar-scala |
8789
|--------|-----------|-------------|
88-
[3.7.0](https://github.com/mwz/sonarqube-scala-docker/releases/tag/3.7.0) | 7.8 [documentation](https://docs.sonarqube.org/7.8), [changelog](https://jira.sonarsource.com/jira/secure/ReleaseNote.jspa?projectId=10930&version=14939) | [7.6.0](https://github.com/mwz/sonar-scala/releases/tag/v7.6.0)
90+
[5.0.0](https://github.com/mwz/sonarqube-scala-docker/releases/tag/5.0.0) | 8.1 [documentation](https://docs.sonarqube.org/8.1), [changelog](https://jira.sonarsource.com/secure/ReleaseNote.jspa?projectId=10930&version=15243) | [8.0.0](https://github.com/mwz/sonar-scala/releases/tag/v8.0.0)
8991
[4.2.0](https://github.com/mwz/sonarqube-scala-docker/releases/tag/4.2.0) | 7.9.1 LTS [documentation](https://docs.sonarqube.org/7.9), [changelog](https://jira.sonarsource.com/secure/ReleaseNote.jspa?projectId=10930&version=15029) | [7.9.0](https://github.com/mwz/sonar-scala/releases/tag/v7.9.0)
9092
[2.12.0](https://github.com/mwz/sonarqube-scala-docker/releases/tag/2.12.0) | 6.7.7 LTS [documentation](https://docs.sonarqube.org/display/SONARQUBE67/Documentation), [changelog](https://jira.sonarsource.com/jira/secure/ReleaseNote.jspa?projectId=10930&version=14865) | [6.8.0](https://github.com/mwz/sonar-scala/releases/tag/v6.8.0)
9193
<!-- prettier-ignore-end -->
@@ -99,6 +101,12 @@ scapegoat support)_
99101
<td><b>sonar-scala</b></td>
100102
<td><b>sonar-scala-extra</b></td>
101103
</tr>
104+
<tr>
105+
<td><a href="https://github.com/mwz/sonarqube-scala-docker/releases/tag/3.7.0">3.7.0</a></td>
106+
<td>7.8 <a href="https://docs.sonarqube.org/7.8">documentation</a>, <a href="https://jira.sonarsource.com/jira/secure/ReleaseNote.jspa?projectId=10930&version=14939">changelog</a></td>
107+
<td><a href="https://github.com/mwz/sonar-scala/releases/tag/v7.6.0">7.6.0</td>
108+
<td></td>
109+
</tr>
102110
<tr>
103111
<td><a href="https://github.com/mwz/sonarqube-scala-docker/releases/tag/3.6.0">3.6.0</a></td>
104112
<td>7.7 <a href="https://docs.sonarqube.org/7.7">documentation</a>, <a href="https://jira.sonarsource.com/jira/secure/ReleaseNote.jspa?projectId=10930&version=14848">changelog</a></td>
@@ -255,6 +263,7 @@ way to automate analysis of Scala projects with SonarQube.
255263
<details>
256264
<summary>Expand to see the changelog.</summary>
257265
<ul>
266+
<li><strong>5.0.0</strong> - Upgraded sonar-scala to 8.0.0 & SonarQube to 8.1.</li>
258267
<li><strong>4.2.0</strong> - Upgraded sonar-scala to 7.9.0.</li>
259268
<li><strong>4.1.0</strong> - Upgraded sonar-scala to 7.8.0.</li>
260269
<li><strong>4.0.0</strong> - Upgraded sonar-scala to 7.7.0 & SonarQube to 7.9.1 LTS.</li>

README.tpl.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66
[![Docker Pulls](https://img.shields.io/docker/pulls/mwizner/sonarqube-scala-plugins.svg)](https://hub.docker.com/r/mwizner/sonarqube-scala-plugins)
77

88
Docker images and docker-compose recipes for out-of-the-box
9-
[SonarQube 6.7 LTS](https://www.sonarqube.org/sonarqube-6-7-lts) and
10-
[SonarQube 7.9 LTS](https://www.sonarqube.org/sonarqube-7-9-lts) instance with
11-
support for [Scala](http://www.scala-lang.org),
9+
[SonarQube 6.7 LTS](https://www.sonarqube.org/sonarqube-6-7-lts),
10+
[SonarQube 7.9 LTS](https://www.sonarqube.org/sonarqube-7-9-lts) and
11+
[SonarQube 8.1](https://www.sonarqube.org/sonarqube-8-1) instance with support
12+
for [Scala](http://www.scala-lang.org),
1213
[Scoverage](https://github.com/scoverage/scalac-scoverage-plugin) (code coverage
1314
metrics) and [Scalastyle](http://www.scalastyle.org) +
1415
[Scapegoat](https://github.com/sksamuel/scapegoat) (static code analysis).
@@ -71,7 +72,8 @@ docker run -d \
7172
## Dependencies
7273

7374
- [SonarQube 6.7 LTS](https://hub.docker.com/_/sonarqube) /
74-
[SonarQube 7.9 LTS](https://hub.docker.com/_/sonarqube)
75+
[SonarQube 7.9 LTS](https://hub.docker.com/_/sonarqube) /
76+
[SonarQube 8.1 LTS](https://hub.docker.com/_/sonarqube)
7577
- [PostgreSQL 10](https://hub.docker.com/_/postgres)
7678
- [mwz/sonar-scala](https://github.com/mwz/sonar-scala) - provides support for
7779
scalastyle, scoverage and scapegoat
@@ -133,6 +135,7 @@ way to automate analysis of Scala projects with SonarQube.
133135
<details>
134136
<summary>Expand to see the changelog.</summary>
135137
<ul>
138+
<li><strong>5.0.0</strong> - Upgraded sonar-scala to 8.0.0 & SonarQube to 8.1.</li>
136139
<li><strong>4.2.0</strong> - Upgraded sonar-scala to 7.9.0.</li>
137140
<li><strong>4.1.0</strong> - Upgraded sonar-scala to 7.8.0.</li>
138141
<li><strong>4.0.0</strong> - Upgraded sonar-scala to 7.7.0 & SonarQube to 7.9.1 LTS.</li>

README_DOCKERHUB.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
Docker images with out-of-the-box
2-
[SonarQube 6.7 LTS](https://www.sonarqube.org/sonarqube-6-7-lts) and
3-
[SonarQube 7.9 LTS](https://www.sonarqube.org/sonarqube-7-9-lts) instance with
4-
support for **[Scala](http://www.scala-lang.org)**,
2+
[SonarQube 6.7 LTS](https://www.sonarqube.org/sonarqube-6-7-lts),
3+
[SonarQube 7.9 LTS](https://www.sonarqube.org/sonarqube-7-9-lts) and
4+
[SonarQube 8.1](https://www.sonarqube.org/sonarqube-8-1) instance with support
5+
for **[Scala](http://www.scala-lang.org)**,
56
**[Scoverage](https://github.com/scoverage/scalac-scoverage-plugin)** (code
67
coverage metrics) and **[Scalastyle](http://www.scalastyle.org)** +
78
**[Scapegoat](https://github.com/sksamuel/scapegoat)** (static code analysis).
@@ -17,11 +18,11 @@ Starting from version `2.7.0`, the images no longer contain the
1718
[sonar-scala-extra](https://github.com/arthepsy/sonar-scala-extra) plugin as
1819
sonar-scala provides Scapegoat support from version `6.5.0` onwards.
1920

20-
- `3.7.0`, `latest`
21-
[Dockerfile](https://github.com/mwz/sonar-scala-docker/blob/master/3.7.0/Dockerfile),
22-
`3.7.0-full`, `latest-full`
23-
[Dockerfile](https://github.com/mwz/sonar-scala-docker/blob/master/3.7.0-full/Dockerfile),
24-
[Release 3.7.0](https://github.com/mwz/sonar-scala-docker/releases/tag/3.7.0)
21+
- `5.0.0`, `latest`
22+
[Dockerfile](https://github.com/mwz/sonar-scala-docker/blob/master/5.0.0/Dockerfile),
23+
`5.0.0-full`, `latest-full`
24+
[Dockerfile](https://github.com/mwz/sonar-scala-docker/blob/master/5.0.0-full/Dockerfile),
25+
[Release 5.0.0](https://github.com/mwz/sonar-scala-docker/releases/tag/5.0.0)
2526
- `4.2.0`, `latest-lts` (7.9 LTS)
2627
[Dockerfile](https://github.com/mwz/sonar-scala-docker/blob/master/4.2.0/Dockerfile),
2728
`4.2.0-full`, `latest-lts-full` (7.9 LTS)
@@ -40,8 +41,8 @@ For older versions please check the
4041

4142
| Version | SonarQube | sonar-scala |
4243
| ------------------------ | ----------------- | ---------------------- |
43-
| 3.7.0 | | 7.6.0 |
44-
| 3.7.0-full | 7.8 | 7.6.0 |
44+
| 5.0.0 | | 8.0.0 |
45+
| 5.0.0-full | 8.1 | 8.0.0 |
4546
| 4.2.0 | | 7.9.0 |
4647
| 4.2.0-full | 7.9.1 LTS | 7.9.0 |
4748
| 2.12.0 | | 6.8.0 |
@@ -57,7 +58,7 @@ version: "2"
5758
5859
services:
5960
sonarqube:
60-
image: sonarqube:7.8-community
61+
image: sonarqube:8.1-community-beta
6162
ports:
6263
- "80:9000"
6364
networks:
@@ -66,7 +67,7 @@ services:
6667
- plugins
6768
6869
plugins:
69-
image: mwizner/sonarqube-scala-plugins:3.7.0
70+
image: mwizner/sonarqube-scala-plugins:5.0.0
7071
volumes:
7172
- sonarqube_plugins:/opt/sonarqube/extensions/plugins
7273
command: /bin/true
@@ -94,7 +95,7 @@ docker run -d \
9495
-e SONARQUBE_JDBC_USERNAME=sonar \
9596
-e SONARQUBE_JDBC_PASSWORD=sonar \
9697
-e SONARQUBE_JDBC_URL=jdbc:postgresql://localhost/sonar \
97-
mwizner/sonarqube-scala-plugins:3.7.0-full
98+
mwizner/sonarqube-scala-plugins:5.0.0-full
9899
```
99100

100101
Please note that if you don't specify the `SONARQUBE_JDBC_URL` variable,
@@ -106,7 +107,7 @@ want to try the image, you can use the following command:
106107
docker run -d \
107108
--name sonarqube-scala-plugins-full \
108109
-p 80:9000 \
109-
mwizner/sonarqube-scala-plugins:3.7.0-full
110+
mwizner/sonarqube-scala-plugins:5.0.0-full
110111
```
111112

112113
## Repository

README_DOCKERHUB.tpl.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
Docker images with out-of-the-box
2-
[SonarQube 6.7 LTS](https://www.sonarqube.org/sonarqube-6-7-lts) and
3-
[SonarQube 7.9 LTS](https://www.sonarqube.org/sonarqube-7-9-lts) instance with
4-
support for **[Scala](http://www.scala-lang.org)**,
2+
[SonarQube 6.7 LTS](https://www.sonarqube.org/sonarqube-6-7-lts),
3+
[SonarQube 7.9 LTS](https://www.sonarqube.org/sonarqube-7-9-lts) and
4+
[SonarQube 8.1](https://www.sonarqube.org/sonarqube-8-1) instance with support
5+
for **[Scala](http://www.scala-lang.org)**,
56
**[Scoverage](https://github.com/scoverage/scalac-scoverage-plugin)** (code
67
coverage metrics) and **[Scalastyle](http://www.scalastyle.org)** +
78
**[Scapegoat](https://github.com/sksamuel/scapegoat)** (static code analysis).
@@ -57,7 +58,7 @@ version: "2"
5758
5859
services:
5960
sonarqube:
60-
image: sonarqube:{{current.sonar}}-community
61+
image: sonarqube:{{current.sonar}}-community-beta
6162
ports:
6263
- "80:9000"
6364
networks:

conf/sonar.properties

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
# IMPORTANT:
99
# - The embedded H2 database is used by default. It is recommended for tests but not for
10-
# production use. Supported databases are MySQL, Oracle, PostgreSQL and Microsoft SQLServer.
10+
# production use. Supported databases are Oracle, PostgreSQL and Microsoft SQLServer.
1111
# - Changes to database connection URL (sonar.jdbc.url) can affect SonarSource licensed products.
1212

1313
# User credentials.
@@ -20,16 +20,9 @@
2020
# H2 embedded database server listening port, defaults to 9092
2121
#sonar.embeddedDatabase.port=9092
2222

23-
#----- DEPRECATED
24-
#----- MySQL >=5.6 && <8.0
25-
# Support of MySQL is dropped in Data Center Editions and deprecated in all other editions
26-
# Only InnoDB storage engine is supported (not myISAM).
27-
# Only the bundled driver is supported. It can not be changed.
28-
#sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance&useSSL=false
29-
30-
#----- Oracle 11g/12c
23+
#----- Oracle 11g/12c/18c/19c
3124
# The Oracle JDBC driver must be copied into the directory extensions/jdbc-driver/oracle/.
32-
# Only the thin client is supported, and only the versions 11.2.x or 12.2.x must be used. See
25+
# Only the thin client is supported, and we recommend using the latest Oracle JDBC driver. See
3326
# https://jira.sonarsource.com/browse/SONAR-9758 for more details.
3427
# If you need to set the schema, please refer to http://jira.sonarsource.com/browse/SONAR-5000
3528
#sonar.jdbc.url=jdbc:oracle:thin:@localhost:1521/XE
@@ -260,7 +253,7 @@
260253
#
261254

262255
# JVM options of Elasticsearch process
263-
#sonar.search.javaOpts=-Xms512m -Xmx512m -XX:+HeapDumpOnOutOfMemoryError
256+
#sonar.search.javaOpts=-Xmx512m -Xms512m -XX:+HeapDumpOnOutOfMemoryError
264257

265258
# Same as previous property, but allows to not repeat all other settings like -Xmx
266259
#sonar.search.javaAdditionalOpts=

current/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# Minideb image with bundled sonar-scala 7.6.0 (https://github.com/mwz/sonar-scala),
1+
# Minideb image with bundled sonar-scala 8.0.0 (https://github.com/mwz/sonar-scala),
22
# which can be mounted as a volume into a SonarQube container.
33

44
FROM bitnami/minideb:stretch
55
RUN install_packages curl ca-certificates
66

7-
ENV SONAR_SCALA_VERSION 7.6.0
7+
ENV SONAR_SCALA_VERSION 8.0.0
88

99
RUN groupadd -r sonarqube && useradd -r -g sonarqube sonarqube
1010
WORKDIR /opt/sonarqube/extensions/plugins
1111
RUN curl -L -o "sonar-scala-plugin-${SONAR_SCALA_VERSION}.jar" \
12-
"https://dl.bintray.com/mwz/maven/com/github/mwz/sonar-scala_2.12/${SONAR_SCALA_VERSION}/sonar-scala_2.12-${SONAR_SCALA_VERSION}-assembly.jar"
12+
"https://dl.bintray.com/mwz/maven/com/github/mwz/sonar-scala_2.13/${SONAR_SCALA_VERSION}/sonar-scala_2.13-${SONAR_SCALA_VERSION}-assembly.jar"
1313
RUN chown -R sonarqube:sonarqube /opt/sonarqube

current/full/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# SonarQube 7.8 image with bundled sonar-scala 7.6.0 (https://github.com/mwz/sonar-scala).
1+
# SonarQube 8.1 image with bundled sonar-scala 8.0.0 (https://github.com/mwz/sonar-scala).
22

3-
FROM sonarqube:7.8-community
3+
FROM sonarqube:8.1-community-beta
44

5-
ENV SONAR_SCALA_VERSION 7.6.0
5+
ENV SONAR_SCALA_VERSION 8.0.0
66

77
WORKDIR /opt/sonarqube/extensions/plugins
8-
RUN rm sonar-scala-plugin-* && wget -O "sonar-scala-plugin-${SONAR_SCALA_VERSION}.jar" \
9-
"https://dl.bintray.com/mwz/maven/com/github/mwz/sonar-scala_2.12/${SONAR_SCALA_VERSION}/sonar-scala_2.12-${SONAR_SCALA_VERSION}-assembly.jar"
8+
RUN rm sonar-scala-plugin-* && curl -L -o "sonar-scala-plugin-${SONAR_SCALA_VERSION}.jar" \
9+
"https://dl.bintray.com/mwz/maven/com/github/mwz/sonar-scala_2.13/${SONAR_SCALA_VERSION}/sonar-scala_2.13-${SONAR_SCALA_VERSION}-assembly.jar"
1010

1111
WORKDIR $SONARQUBE_HOME
1212
ENTRYPOINT ["./bin/run.sh"]

dev/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ FROM bitnami/minideb:stretch
77
ARG SONAR_SCALA_VERSION
88

99
RUN groupadd -r sonarqube && useradd -r -g sonarqube sonarqube
10-
ADD --chown=sonarqube:sonarqube sonar-scala_2.12-assembly.jar /opt/sonarqube/extensions/plugins/sonar-scala_2.12-assembly.jar
10+
ADD --chown=sonarqube:sonarqube sonar-scala_2.13-assembly.jar /opt/sonarqube/extensions/plugins/sonar-scala_2.13-assembly.jar
1111
WORKDIR /opt/sonarqube/extensions/plugins

dev/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
set -eu
33

4-
export SONAR_SCALA_VERSION=7.10.0-SNAPSHOT
5-
cp ~/.ivy2/local/com.github.mwz/sonar-scala_2.12/${SONAR_SCALA_VERSION}/jars/sonar-scala_2.12-assembly.jar .
4+
export SONAR_SCALA_VERSION=8.1.0-SNAPSHOT
5+
cp ~/.ivy2/local/com.github.mwz/sonar-scala_2.13/${SONAR_SCALA_VERSION}/jars/sonar-scala_2.13-assembly.jar .
66
docker build -t mwizner/sonarqube-scala-plugins:dev --build-arg SONAR_SCALA_VERSION=${SONAR_SCALA_VERSION} .

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "2"
22

33
services:
44
sonarqube:
5-
image: sonarqube:7.8-community
5+
image: sonarqube:8.1-community-beta
66
ports:
77
- "80:9000"
88
networks:
@@ -21,7 +21,7 @@ services:
2121
depends_on:
2222
- db
2323
db:
24-
image: postgres:10.9-alpine
24+
image: postgres:10.11-alpine
2525
networks:
2626
- sonarnet
2727
environment:
@@ -31,7 +31,7 @@ services:
3131
- postgresql:/var/lib/postgresql
3232
- postgresql_data:/var/lib/postgresql/data
3333
plugins:
34-
image: mwizner/sonarqube-scala-plugins:3.7.0
34+
image: mwizner/sonarqube-scala-plugins:5.0.0
3535
volumes:
3636
- sonarqube_plugins:/opt/sonarqube/extensions/plugins
3737
command: /bin/true

vars.json

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"current": {
3-
"version": "3.7.0",
4-
"sonar": "7.8",
5-
"sonarDocs": "https://docs.sonarqube.org/7.8",
6-
"sonarChangelog": "https://jira.sonarsource.com/jira/secure/ReleaseNote.jspa?projectId=10930&version=14939",
7-
"sonarScala": "7.6.0"
3+
"version": "5.0.0",
4+
"sonar": "8.1",
5+
"sonarDocs": "https://docs.sonarqube.org/8.1",
6+
"sonarChangelog": "https://jira.sonarsource.com/secure/ReleaseNote.jspa?projectId=10930&version=15243",
7+
"sonarScala": "8.0.0"
88
},
99
"lts": {
1010
"version": "4.2.0",
@@ -22,6 +22,13 @@
2222
},
2323
"versions": {
2424
"current": [
25+
{
26+
"version": "3.7.0",
27+
"sonar": "7.8",
28+
"sonarDocs": "https://docs.sonarqube.org/7.8",
29+
"sonarChangelog": "https://jira.sonarsource.com/jira/secure/ReleaseNote.jspa?projectId=10930&version=14939",
30+
"sonarScala": "7.6.0"
31+
},
2532
{
2633
"version": "3.6.0",
2734
"sonar": "7.7",

0 commit comments

Comments
 (0)