Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • benoit1.martin/maven
  • to-be-continuous/maven
  • JeanPicard/maven
  • david.bidorff/maven
  • jriobello/maven
  • dominique.villard/maven
  • jefmydev/maven
  • sethbergman/maven
  • pifou25/maven
  • kiranpatel11/maven
  • clement.bois/maven
  • timothy.stone/maven
  • another15y/to-be-continuous/maven
  • contrib-tbc/maven
  • xavier.francois/maven
  • soufiane.ouldlaassel.001/maven
  • ScavCoreMKII/maven-test
  • zartc/maven
  • fredsnap/maven
  • michaelkebe/maven
  • bragolgirith/maven
  • anoopvlcy/maven
  • another15y/tbc/maven
  • yanisguerault/maven
  • jcamiel/maven
  • hendisantika/maven
  • mmaddipacc1/mig-maven
27 results
Show changes
Commits on Source (7)
......@@ -9,7 +9,7 @@ include:
ref: '2.0.1'
file: 'templates/gitlab-ci-bash.yml'
- project: 'to-be-continuous/semantic-release'
ref: '2.2.1'
ref: '2.2.2'
file: '/templates/gitlab-ci-semrel.yml'
stages:
......
## [2.1.4](https://gitlab.com/to-be-continuous/maven/compare/2.1.3...2.1.4) (2022-02-25)
### Bug Fixes
* **artifacts:** always publish test artifacts ([3bcb0bc](https://gitlab.com/to-be-continuous/maven/commit/3bcb0bc547911bc08bd56f462d74159c0d4831da))
## [2.1.3](https://gitlab.com/to-be-continuous/maven/compare/2.1.2...2.1.3) (2022-02-04)
......
......@@ -11,7 +11,7 @@ In order to include this template in your project, add the following to your `gi
```yaml
include:
- project: 'to-be-continuous/maven'
ref: '2.1.3'
ref: '2.1.4'
file: '/templates/gitlab-ci-maven.yml'
```
......@@ -173,7 +173,7 @@ They are bound to the `publish` stage, and use the following variables:
| `MAVEN_DEPLOY_ARGS` | Maven arguments for the Snapshot job | `deploy -Dmaven.test.skip=true` |
| `MAVEN_RELEASE_ARGS` | Maven arguments for the Release job | `release:prepare release:perform -Darguments=-Dmaven.test.skip=true` |
| `MAVEN_RELEASE_SCM_COMMENT_PREFIX` | Maven release plugin [scmCommentPrefix](https://maven.apache.org/maven-release/maven-release-plugin/prepare-mojo.html#scmCommentPrefix) parameter | `[ci skip][maven-release-plugin]` |
| `MVN_SEMREL_RELEASE_DISABLED` | Set to `true` to disable [semantic-release integration](#semantic-release-integration) | `[ci skip][maven-release-plugin]` |
| `MVN_SEMREL_RELEASE_DISABLED` | Set to `true` to disable [semantic-release integration](#semantic-release-integration) | _none_ (disabled) |
More info:
......@@ -205,7 +205,7 @@ variables:
SEMREL_RELEASE_DISABLED: "true"
```
Finally, the semantic-release integration can be disable with the `MVN_SEMREL_RELEASE_DISABLED` variable.
Finally, the semantic-release integration can be disabled with the `MVN_SEMREL_RELEASE_DISABLED` variable.
#### Maven repository authentication
......@@ -348,7 +348,3 @@ Note that the password should be an access token with `read_repository` and `wri
...
</scm>
```
## GitLab compatibility
:information_source: This template is actually tested and validated on GitLab Community Edition instance version 13.12.11
......@@ -434,7 +434,7 @@ stages:
esac
}
if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update maven "2.1.3"; fi
if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update maven "2.1.4"; fi
unscope_variables
# ENDSCRIPT
......@@ -444,7 +444,7 @@ stages:
image: $MAVEN_IMAGE
services:
- name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
command: ["--service", "maven", "2.1.3" ]
command: ["--service", "maven", "2.1.4" ]
before_script:
- *mvn-scripts
- install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"
......@@ -469,6 +469,7 @@ mvn-build:
artifacts:
name: "$CI_JOB_NAME artifacts from $CI_PROJECT_NAME on $CI_COMMIT_REF_SLUG"
expire_in: 1 day
when: always
reports:
junit:
- "**/target/*-reports/TEST-*.xml"
......