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

Show support for SonarQube 10.7 #55

Merged
merged 1 commit into from
Oct 22, 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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- [#39](https://github.com/green-code-initiative/ecoCode-javascript/issues/39) Add rule `@ecocode/avoid-brightness-override` (EC522)
- [#41](https://github.com/green-code-initiative/ecoCode-javascript/pull/41) Add rule `@ecocode/no-torch` (EC530)
- Add support for SonarQube up to 10.5
- Add support for SonarQube up to 10.7

### Changed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The standalone version of the ESLint plugin is available from [npmjs](https://np

| Plugins Version | SonarQube version | ESLint version |
|-----------------|-------------------|----------------|
| 1.4.+, 1.5.+ | 9.9.+ LTS to 10.5 | 7+ |
| 1.4.+, 1.5.+ | 9.9.+ LTA to 10.7 | 7+ |
Copy link
Member Author

@utarwyn utarwyn Oct 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SonarQube LTS seems to be renamed to LTA (Long-Term Active)
https://www.sonarsource.com/products/sonarqube/downloads/lts/


🤝 Contribution
---------------
Expand Down
14 changes: 7 additions & 7 deletions sonar-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,19 @@
<project.build.sourceEncoding>${encoding}</project.build.sourceEncoding>
<project.reporting.outputEncoding>${encoding}</project.reporting.outputEncoding>

<version.ecocode-rules-specifications>1.6.0</version.ecocode-rules-specifications>
<version.sonarqube>9.4.0.54424</version.sonarqube>
<version.ecocode-rules-specifications>1.6.4</version.ecocode-rules-specifications>
<version.sonarqube>9.14.0.375</version.sonarqube>
<version.sonar-javascript>9.13.0.20537</version.sonar-javascript>
<version.sonar-packaging>1.23.0.740</version.sonar-packaging>
<version.sonar-analyzer-commons>2.7.0.1482</version.sonar-analyzer-commons>
<version.sonar-analyzer-commons>2.14.0.3087</version.sonar-analyzer-commons>
<version.buildnumber>3.1.0</version.buildnumber>
<version.maven-exec>3.1.0</version.maven-exec>
<version.maven-shade>3.4.1</version.maven-shade>
<version.license-maven-plugin>4.1</version.license-maven-plugin>

<version.junit>5.10.1</version.junit>
<version.mockito>5.7.0</version.mockito>
<version.assertj>3.24.2</version.assertj>
<version.junit>5.10.3</version.junit>
<version.mockito>5.12.0</version.mockito>
<version.assertj>3.26.3</version.assertj>
<version.jacoco>0.8.11</version.jacoco>
</properties>

Expand All @@ -75,7 +75,7 @@
</dependency>

<dependency>
<groupId>org.sonarsource.sonarqube</groupId>
<groupId>org.sonarsource.api.plugin</groupId>
<artifactId>sonar-plugin-api</artifactId>
<version>${version.sonarqube}</version>
<scope>provided</scope>
Expand Down
Loading