Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SCANCLI-160 Update parent pom and build dependencies #199

Merged
merged 3 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand All @@ -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>
Expand Down Expand Up @@ -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>
Expand Down
15 changes: 8 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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 -->
Expand All @@ -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>
Expand All @@ -90,7 +91,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.8</version>
<version>1.5.12</version>
ericg138 marked this conversation as resolved.
Show resolved Hide resolved
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
Expand All @@ -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>
Expand All @@ -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>
Expand Down Expand Up @@ -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>
Expand Down
Loading