Skip to content

Commit

Permalink
initialization of Java plugin repository - corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
David DE CARVALHO committed Dec 19, 2023
1 parent df9c52d commit 46dfa47
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tag_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: echo "upload_url=${{ steps.create_release.outputs.upload_url }}" >> $GITHUB_OUTPUT

upload:
name: Upload PHP Plugin
name: Upload Java Plugin
runs-on: ubuntu-latest
needs: build
steps:
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Deleted

[unreleased]: https://github.com/green-code-initiative/ecoCode-php/compare/v1.5.0...HEAD
[1.4.0]: https://github.com/green-code-initiative/ecoCode-php/compare/v0.0.0...1.5.0
[unreleased]: https://github.com/green-code-initiative/ecoCode-java/compare/v1.5.0...HEAD
[1.4.0]: https://github.com/green-code-initiative/ecoCode-java/compare/v0.0.0...1.5.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
EcoCode-php
EcoCode-java
===========

_ecoCode_ is a collective project aiming to reduce environmental footprint of software at the code level. The goal of
Expand All @@ -8,7 +8,7 @@ ecological impact: energy and resources over-consumption, "fatware", shortening
_ecoCode_ is based on evolving catalogs
of [good practices](https://github.com/green-code-initiative/ecoCode/blob/main/docs/rules), for various technologies.
This
SonarQube plugin then implements these catalogs as rules for scanning your PHP projects.
SonarQube plugin then implements these catalogs as rules for scanning your Java projects.

> ⚠️ This is still a very early stage project. Any feedback or contribution will be highly appreciated. Please
> refer to the contribution section.
Expand All @@ -31,7 +31,7 @@ check [ecoCode repository](https://github.com/green-code-initiative/ecoCode#-get
🛒 Distribution
------------------

Ready to use binaries are available [from GitHub](https://github.com/green-code-initiative/ecoCode-php/releases).
Ready to use binaries are available [from GitHub](https://github.com/green-code-initiative/ecoCode-java/releases).

🧩 Compatibility
-----------------
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
<sonar-analyzer-commons.version>2.5.0.1358</sonar-analyzer-commons.version>

<sonar-packaging.version>1.23.0.740</sonar-packaging.version>
<sonar.skipDependenciesPackaging>true</sonar.skipDependenciesPackaging>

<junit.jupiter.version>5.9.1</junit.jupiter.version>
<assertJ.version>3.23.1</assertJ.version>
Expand Down Expand Up @@ -164,7 +163,7 @@
</execution>
<execution>
<id>report</id>
<!-- <phase>test</phase> -->
<!-- <phase>test</phase>-->
<goals>
<goal>report</goal>
</goals>
Expand All @@ -181,6 +180,7 @@
<pluginClass>fr.greencodeinitiative.java.JavaPlugin</pluginClass>
<sonarLintSupported>true</sonarLintSupported>
<pluginApiMinVersion>${sonarqube.version}</pluginApiMinVersion>
<skipDependenciesPackaging>true</skipDependenciesPackaging>
<jreMinVersion>${java.version}</jreMinVersion>
<archive>
<manifestEntries>
Expand Down Expand Up @@ -241,7 +241,7 @@
</execution>
</executions>
</plugin>
<!-- <plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.6.0</version>
Expand Down Expand Up @@ -326,7 +326,7 @@
</configuration>
</execution>
</executions>
</plugin> -->
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
Expand Down

0 comments on commit 46dfa47

Please sign in to comment.