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

Update plugins version and add C# plugin #31

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased

### Added

- Include Ecocode plugins for C# code

### Removed

### Changed

- Update Ecocode plugins with latest release

---

## Version 3.5 , 18/03/2024

### Added
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ services:
ECOSONAR_ENV_LOCAL_DEV_SERVER_URL: http://localhost:3000
restart: unless-stopped


sonar:
image: sonarqube:lts-community
container_name: ecosonar_sonarqube
Expand All @@ -51,12 +50,13 @@ services:
SONAR_ES_BOOTSTRAP_CHECKS_DISABLE: 'true'
volumes:
- ./EcoSonar-SonarQube/target/:/opt/sonarqube/extensions/plugins/
- ./EcoSonar-SonarQube/ecocode/ecocode-android-1.1.0.jar:/opt/sonarqube/extensions/plugins/ecocode-android-1.1.0.jar
- ./EcoSonar-SonarQube/ecocode/ecocode-android-1.1.0.jar:/opt/sonarqube/extensions/plugins/ecocode-android-1.1.0.jar:ro
- ./EcoSonar-SonarQube/ecocode/ecocode-ios-1.1.0.jar:/opt/sonarqube/extensions/plugins/ecocode-ios-1.1.0.jar:ro
- ./EcoSonar-SonarQube/ecocode/ecocode-java-plugin-1.6.0.jar:/opt/sonarqube/extensions/plugins/ecocode-java-plugin-1.6.0.jar:ro
- ./EcoSonar-SonarQube/ecocode/ecocode-javascript-plugin-1.4.0.jar:/opt/sonarqube/extensions/plugins/ecocode-javascript-plugin-1.4.0.jar:ro
- ./EcoSonar-SonarQube/ecocode/ecocode-php-plugin-1.4.2.jar:/opt/sonarqube/extensions/plugins/ecocode-php-plugin-1.4.2.jar:ro
- ./EcoSonar-SonarQube/ecocode/ecocode-python-plugin-1.4.2.jar:/opt/sonarqube/extensions/plugins/ecocode-python-plugin-1.4.2.jar:ro
- ./EcoSonar-SonarQube/ecocode/ecocode-java-plugin-1.6.1.jar:/opt/sonarqube/extensions/plugins/ecocode-java-plugin-1.6.1.jar:ro
- ./EcoSonar-SonarQube/ecocode/ecocode-javascript-plugin-1.5.0.jar:/opt/sonarqube/extensions/plugins/ecocode-javascript-plugin-1.5.0.jar:ro
- ./EcoSonar-SonarQube/ecocode/ecocode-php-plugin-1.4.3.jar:/opt/sonarqube/extensions/plugins/ecocode-php-plugin-1.4.3.jar:ro
- ./EcoSonar-SonarQube/ecocode/ecocode-python-plugin-1.4.3.jar:/opt/sonarqube/extensions/plugins/ecocode-python-plugin-1.4.3.jar:ro
- ./EcoSonar-SonarQube/ecocode/ecocode-csharp-plugin-1.1.0.jar:/opt/sonarqube/extensions/plugins/ecocode-csharp-plugin-1.1.0.jar:ro
- sonarqube_extensions:/opt/sonarqube/extensions
- sonarqube_logs:/opt/sonarqube/logs
- sonarqube_data:/opt/sonarqube/data
Expand Down