diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2024-12-17 09:15:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-17 09:15:39 +0100 |
commit | 26509c345627ce329ea3004ffc4eac1cf8a83fa8 (patch) | |
tree | 9dbf9735f8aeef5f8864a5a622ee0db8c896d0c6 | |
parent | 6052e1158ab077c740a44967de1fc94e462c9eb0 (diff) | |
download | sonar-scanner-cli-26509c345627ce329ea3004ffc4eac1cf8a83fa8.tar.gz sonar-scanner-cli-26509c345627ce329ea3004ffc4eac1cf8a83fa8.zip |
SCANCLI-160 Update parent pom and build dependencies (#199)
-rw-r--r-- | it/pom.xml | 9 | ||||
-rw-r--r-- | pom.xml | 15 |
2 files changed, 13 insertions, 11 deletions
@@ -6,7 +6,7 @@ <parent> <groupId>org.sonarsource.parent</groupId> <artifactId>parent</artifactId> - <version>77.0.0.2082</version> + <version>82.0.0.2314</version> <relativePath /> </parent> @@ -22,18 +22,19 @@ </organization> <properties> + <license.name>GNU LGPL v3</license.name> <sonar.buildVersion>7.9.1</sonar.buildVersion> <!-- following properties must be set in command-line : sonar.runtimeVersion and sonarRunner.version --> <maven.compiler.release>17</maven.compiler.release> - <orchestrator.version>5.0.0.2065</orchestrator.version> + <orchestrator.version>5.1.0.2274</orchestrator.version> </properties> <dependencies> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> - <version>2.0.3</version> + <version>3.0.2</version> <scope>provided</scope> </dependency> <dependency> @@ -104,7 +105,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> - <version>3.0.2</version> + <version>3.8.1</version> <executions> <execution> <id>download-qa-scanner</id> @@ -5,7 +5,7 @@ <parent> <groupId>org.sonarsource.parent</groupId> <artifactId>parent</artifactId> - <version>77.0.0.2082</version> + <version>82.0.0.2314</version> </parent> <groupId>org.sonarsource.scanner.cli</groupId> @@ -46,6 +46,7 @@ </ciManagement> <properties> + <license.name>GNU LGPL v3</license.name> <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile> <!-- used for deployment to SonarSource Artifactory --> @@ -69,7 +70,7 @@ <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> - <version>5.11.0</version> + <version>5.11.4</version> <type>pom</type> <scope>import</scope> </dependency> @@ -90,7 +91,7 @@ <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> - <version>1.5.8</version> + <version>1.5.12</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> @@ -114,7 +115,7 @@ <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> - <version>5.13.0</version> + <version>5.14.2</version> <scope>test</scope> </dependency> </dependencies> @@ -131,7 +132,7 @@ <plugin> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>download-maven-plugin</artifactId> - <version>1.9.0</version> + <version>1.13.0</version> </plugin> </plugins> </pluginManagement> @@ -239,8 +240,8 @@ <configuration> <rules> <requireFilesSize> - <minsize>11100000</minsize> - <maxsize>11200000</maxsize> + <minsize>11200000</minsize> + <maxsize>11300000</maxsize> <files> <file>${project.build.directory}/sonar-scanner-${project.version}.zip</file> </files> |