Skip to content
Snippets Groups Projects
Commit df10d30b authored by Sébastien Dinot's avatar Sébastien Dinot
Browse files

Formatting comments

parent a6d7a373
No related branches found
No related tags found
No related merge requests found
Pipeline #6050 passed
...@@ -5,7 +5,6 @@ stages: ...@@ -5,7 +5,6 @@ stages:
default: default:
# Default image # Default image
image: registry.orekit.org/orekit/ci-utils/maven:3.9.6-eclipse-temurin-11 image: registry.orekit.org/orekit/ci-utils/maven:3.9.6-eclipse-temurin-11
# Cache downloaded dependencies and plugins between builds. # Cache downloaded dependencies and plugins between builds.
# To keep cache across branches add 'key: "$CI_JOB_REF_NAME"' # To keep cache across branches add 'key: "$CI_JOB_REF_NAME"'
cache: cache:
...@@ -13,15 +12,20 @@ default: ...@@ -13,15 +12,20 @@ default:
- .m2/repository - .m2/repository
variables: variables:
# This will supress any download for dependencies and plugins or upload messages which would clutter the console log. # This will suppress any download for dependencies and plugins or upload
# `showDateTime` will show the passed time in milliseconds. You need to specify `--batch-mode` to make this work. # messages which would clutter the console log. `showDateTime` will show the
# passed time in milliseconds. You need to specify `--batch-mode` to make
# this work.
MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN -Dorg.slf4j.simpleLogger.showDateTime=true -Djava.awt.headless=true" MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN -Dorg.slf4j.simpleLogger.showDateTime=true -Djava.awt.headless=true"
# As of Maven 3.3.0 instead of this you may define these options in `.mvn/maven.config` so the same config is used # As of Maven 3.3.0 instead of this you may define these options in
# when running from the command line. # `.mvn/maven.config` so the same config is used when running from the
# `installAtEnd` and `deployAtEnd` are only effective with recent version of the corresponding plugins. # command line.
# `installAtEnd` and `deployAtEnd` are only effective with recent version of
# the corresponding plugins.
MAVEN_CLI_OPTS: "-s .CI/maven-settings.xml --batch-mode --errors --fail-at-end --show-version -DinstallAtEnd=true -DdeployAtEnd=true" MAVEN_CLI_OPTS: "-s .CI/maven-settings.xml --batch-mode --errors --fail-at-end --show-version -DinstallAtEnd=true -DdeployAtEnd=true"
SONAR_PROJECT_KEY: "${CI_PROJECT_NAMESPACE}:${CI_PROJECT_NAME}" SONAR_PROJECT_KEY: "${CI_PROJECT_NAMESPACE}:${CI_PROJECT_NAME}"
SONAR_PROJECT_NAME: "${CI_PROJECT_TITLE} (${CI_PROJECT_NAMESPACE}:${CI_PROJECT_NAME})" SONAR_PROJECT_NAME: "${CI_PROJECT_TITLE} (${CI_PROJECT_NAMESPACE}:${CI_PROJECT_NAME})"
# Deployment target properties
TARGET_URL_PREFIX: "cochise@ganymede.orekit.org:/var/www/mvn-sites/site-rugged" TARGET_URL_PREFIX: "cochise@ganymede.orekit.org:/var/www/mvn-sites/site-rugged"
verify: verify:
...@@ -53,9 +57,8 @@ verify:warning: ...@@ -53,9 +57,8 @@ verify:warning:
rules: rules:
- if: $SONAR_TOKEN == null - if: $SONAR_TOKEN == null
# On main branches (develop, release-*, master) # On main branches (develop, release-*, master) the produced artifacts are
# the produced artifacts are deployed on the Nexus of the project # deployed on the Nexus of the project (https://packages.orekit.org/)
# (https://packages.orekit.org/)
deploy:artifacts: deploy:artifacts:
stage: deploy stage: deploy
script: script:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment