diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index 9a3f4ae4..abedbe26 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -28,7 +28,7 @@ jobs: key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 - name: Build with Maven - run: mvn -B clean package + run: mvn -B clean install - name: Create Release Notes uses: docker://decathlon/release-notes-generator-action:2.0.1 env: @@ -36,7 +36,7 @@ jobs: OUTPUT_FOLDER: temp_release_notes - name: Set tag and project values run: | - echo "tag=$(cat pom.xml | grep ".*" | head -1 |awk -F'[><]' '{print $3}')" >> $GITHUB_ENV + echo "tag=$(cat pom.xml | grep ".*" | head -1 |awk -F'[><]' '{print $3}')" >> $GITHUB_ENV echo "project=$(echo ${{ github.repository }} | awk -F '/' '{print $2}')" >> $GITHUB_ENV - name: Create a tag for the release run: | @@ -49,12 +49,9 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - artifacts: - - "icode-app/target/icode-*.zip" - - "icode-ide/fr.cnes.icode.repository/target/products/icode-ide.product-*.zip" - - "icode-ide/fr.cnes.icode.repository/target/fr.cnes.icode.repository-*.zip" + artifacts: "icode-app/target/icode-*.zip,icode-ide/fr.cnes.icode.repository/target/products/icode-ide.product-*.zip,icode-ide/fr.cnes.icode.repository/target/fr.cnes.icode.repository-*.zip" tag: ${{ env.tag }} name: ${{ env.project }} ${{ env.tag }} bodyFile: "temp_release_notes/release_file.md" draft: true - token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/java-continuous-integration.yml b/.github/workflows/java-continuous-integration.yml index c986e37e..92207092 100644 --- a/.github/workflows/java-continuous-integration.yml +++ b/.github/workflows/java-continuous-integration.yml @@ -40,7 +40,7 @@ jobs: key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} restore-keys: ${{ runner.os }}-yarn- - name: Build with Maven - run: mvn -B clean package + run: mvn -B clean install code-analysis: runs-on: ubuntu-latest name: SonarCloud Code Analysis diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index d34a0dea..7e77a3a2 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -34,7 +34,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe ## Enforcement -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at catlab@cnes.fr. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a98b6f69..1bcb60c5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,7 +11,7 @@ The following is a set of guidelines for contributing to i-Code Cnes, which are * [Git Commit Messages](#git-commit-messages) ## Code of Conduct -This project and everyone participating in it is governed by the [CATLab Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to [catlab@cnes.fr](mailto:catlab@cnes.fr). +This project and everyone participating in it is governed by the [CATLab Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. ## How Can I Contribute? diff --git a/README.md b/README.md index 3c06bdeb..6d491d74 100644 --- a/README.md +++ b/README.md @@ -220,8 +220,6 @@ If you need to add some new feature, the easiest way is to implment your own plu ### Feedback and Support -Contact : catlab@cnes.fr - Bugs and feature requests: https://github.com/cnescatlab/i-CodeCNES/issues ### How to contribute diff --git a/icode-app/src/main/scripts/icode.bat b/icode-app/src/main/scripts/icode.bat index cb26f77d..ec6cd8d1 100755 --- a/icode-app/src/main/scripts/icode.bat +++ b/icode-app/src/main/scripts/icode.bat @@ -60,7 +60,7 @@ set PROJECT_HOME=%CD% @REM remove trailing backslash, see https://groups.google.com/d/msg/sonarqube/wi7u-CyV_tc/3u9UKRmABQAJ IF %PROJECT_HOME:~-1% == \ SET PROJECT_HOME=%PROJECT_HOME:~0,-1% -%JAVA_EXEC% -Djava.awt.headless=true -XX:-UseGCOverheadLimit -Xms1024M -Xmx1024M -cp %ICODE_HOME%\*;%ICODE_HOME%\plugins\* fr.cnes.icode.application.ICodeApplication %* +%JAVA_EXEC% -Djava.awt.headless=true -XX:-UseGCOverheadLimit -Xms1024M -Xmx1024M -cp "%ICODE_HOME%\*";"%ICODE_HOME%\plugins\*" fr.cnes.icode.application.ICodeApplication %* if ERRORLEVEL 1 goto error goto end