diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2023-08-08 10:26:31 -0500 |
---|---|---|
committer | Duarte Meneses <duarte.meneses@sonarsource.com> | 2023-08-15 09:41:12 -0500 |
commit | cc5dd02aaea0a17b0d326bb9c593d51731d0c351 (patch) | |
tree | 576ac4a335cbdf884729518c9dbd5ad807e0ce1d /it/pom.xml | |
parent | d06840ed2531b2e71f1399d6a1fc245258249b56 (diff) | |
download | sonar-scanner-cli-cc5dd02aaea0a17b0d326bb9c593d51731d0c351.tar.gz sonar-scanner-cli-cc5dd02aaea0a17b0d326bb9c593d51731d0c351.zip |
SQSCANNER-117 Only keep JS plugin bundlded
Diffstat (limited to 'it/pom.xml')
-rw-r--r-- | it/pom.xml | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -26,6 +26,7 @@ <!-- following properties must be set in command-line : sonar.runtimeVersion and sonarRunner.version --> <maven.compiler.release>17</maven.compiler.release> + <orchestrator.version>4.1.0.495</orchestrator.version> </properties> <dependencies> @@ -38,7 +39,14 @@ <dependency> <groupId>org.sonarsource.orchestrator</groupId> <artifactId>sonar-orchestrator</artifactId> - <version>3.40.0.183</version> + <version>${orchestrator.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.sonarsource.orchestrator</groupId> + <artifactId>sonar-orchestrator-junit4</artifactId> + <version>${orchestrator.version}</version> + <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> |