diff --git a/Jenkinsfile b/Jenkinsfile index ba232bfc0bd..07849d7f53f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -134,181 +134,181 @@ pipeline { } } - stage ("Execute unit and integration tests on master branches") { - when { - anyOf { - branch "develop*" - branch "master_*" - branch "master" - tag pattern: "^[1-9]+\\.[0-9]+\\.[0-9]+-?[0-9]*\$", comparator: "REGEXP" - } - } - environment { - LANG="fr_FR.UTF-8" // to bypass dateformat problem - } - steps { - dir('sources') { - script { - docker.withRegistry("http://${env.SERVICE_DOCKER_PULL_URL}") { - // minIO SSL first - docker.image("${env.SERVICE_DOCKER_PULL_URL}/minio/minio:${env.MINIO_VERSION}").withRun("--user \$(id -u):\$(id -g) -p 127.0.0.1:9000:9000 -v ${pwd}/dataminiossl:/data -v ${WORKSPACE}/sources/common/common-storage/src/test/resources/s3/tls:/root/.minio/certs -e \"MINIO_ACCESS_KEY=MKU4HW1K9HSST78MDY3T\" -e \"MINIO_SECRET_KEY=aSyBSStwp4JDZzpNKeJCc0Rdn12hOTa0EFejFfkd\"",'server /data') { o -> - docker.image("${env.SERVICE_DOCKER_PULL_URL}/elasticsearch:${env.ES_VERSION}").withRun('-p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e "cluster.name=elasticsearch-data"') { d -> - sh 'while ! curl -v http://localhost:9200; do sleep 2; done' - sh 'curl -X PUT http://localhost:9200/_template/default -H \'Content-Type: application/json\' -d \'{"index_patterns": ["*"],"order": -1,"settings": {"number_of_shards": "1","number_of_replicas": "0"}}\'' - docker.image("${env.SERVICE_DOCKER_PULL_URL}/mongo:${env.MONGO_VERSION}").withRun('-p 27017:27017 -v ${WORKSPACE}/vitam-conf-dev/tests/initdb.d/:/docker-entrypoint-initdb.d/ --health-cmd "test $$(echo "rs.status().ok" | mongo --quiet) -eq 1" --health-start-period 30s --health-interval 10s','mongod --bind_ip_all --replSet rs0') { i -> - //minIO without SSL - docker.image("${env.SERVICE_DOCKER_PULL_URL}/minio/minio:${env.MINIO_VERSION}").withRun("--user \$(id -u):\$(id -g) -p 127.0.0.1:9999:9000 -v ${pwd}/dataminio:/data -e \"MINIO_ACCESS_KEY=MKU4HW1K9HSST78MDY3T\" -e \"MINIO_SECRET_KEY=aSyBSStwp4JDZzpNKeJCc0Rdn12hOTa0EFejFfkd\"",'server /data') { l -> - docker.image("${env.SERVICE_DOCKER_PULL_URL}/openio/sds:${env.OPENIO_VERSION}").withRun("-p 127.0.0.1:6007:6007 -e \"REGION=us-west-1\"") { e -> - sh '$MVN_COMMAND -f pom.xml clean verify org.owasp:dependency-check-maven:aggregate sonar:sonar -Dsonar.branch=$GIT_BRANCH -Ddownloader.quick.query.timestamp=false' - } - } - } - } - } - } - } - } - } - post { - always { - junit 'sources/**/target/surefire-reports/*.xml' - } - success { - archiveArtifacts ( - artifacts: '**/dependency-check-report.html' - , fingerprint: true - , allowEmptyArchive: true + // stage ("Execute unit and integration tests on master branches") { + // when { + // anyOf { + // branch "develop*" + // branch "master_*" + // branch "master" + // tag pattern: "^[1-9]+\\.[0-9]+\\.[0-9]+-?[0-9]*\$", comparator: "REGEXP" + // } + // } + // environment { + // LANG="fr_FR.UTF-8" // to bypass dateformat problem + // } + // steps { + // dir('sources') { + // script { + // docker.withRegistry("http://${env.SERVICE_DOCKER_PULL_URL}") { + // // minIO SSL first + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/minio/minio:${env.MINIO_VERSION}").withRun("--user \$(id -u):\$(id -g) -p 127.0.0.1:9000:9000 -v ${pwd}/dataminiossl:/data -v ${WORKSPACE}/sources/common/common-storage/src/test/resources/s3/tls:/root/.minio/certs -e \"MINIO_ACCESS_KEY=MKU4HW1K9HSST78MDY3T\" -e \"MINIO_SECRET_KEY=aSyBSStwp4JDZzpNKeJCc0Rdn12hOTa0EFejFfkd\"",'server /data') { o -> + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/elasticsearch:${env.ES_VERSION}").withRun('-p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e "cluster.name=elasticsearch-data"') { d -> + // sh 'while ! curl -v http://localhost:9200; do sleep 2; done' + // sh 'curl -X PUT http://localhost:9200/_template/default -H \'Content-Type: application/json\' -d \'{"index_patterns": ["*"],"order": -1,"settings": {"number_of_shards": "1","number_of_replicas": "0"}}\'' + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/mongo:${env.MONGO_VERSION}").withRun('-p 27017:27017 -v ${WORKSPACE}/vitam-conf-dev/tests/initdb.d/:/docker-entrypoint-initdb.d/ --health-cmd "test $$(echo "rs.status().ok" | mongo --quiet) -eq 1" --health-start-period 30s --health-interval 10s','mongod --bind_ip_all --replSet rs0') { i -> + // //minIO without SSL + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/minio/minio:${env.MINIO_VERSION}").withRun("--user \$(id -u):\$(id -g) -p 127.0.0.1:9999:9000 -v ${pwd}/dataminio:/data -e \"MINIO_ACCESS_KEY=MKU4HW1K9HSST78MDY3T\" -e \"MINIO_SECRET_KEY=aSyBSStwp4JDZzpNKeJCc0Rdn12hOTa0EFejFfkd\"",'server /data') { l -> + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/openio/sds:${env.OPENIO_VERSION}").withRun("-p 127.0.0.1:6007:6007 -e \"REGION=us-west-1\"") { e -> + // sh '$MVN_COMMAND -f pom.xml clean verify org.owasp:dependency-check-maven:aggregate sonar:sonar -Dsonar.branch=$GIT_BRANCH -Ddownloader.quick.query.timestamp=false' + // } + // } + // } + // } + // } + // } + // } + // } + // } + // post { + // always { + // junit 'sources/**/target/surefire-reports/*.xml' + // } + // success { + // archiveArtifacts ( + // artifacts: '**/dependency-check-report.html' + // , fingerprint: true + // , allowEmptyArchive: true - ) - } - } - } + // ) + // } + // } + // } - stage ("Execute unit and integration tests on merge requests") { - when { - not{ - anyOf { - branch "develop*" - branch "master_*" - branch "master" - branch "PR*" // do not try to update on github status - tag pattern: "^[1-9]+\\.[0-9]+\\.[0-9]+-?[0-9]*\$", comparator: "REGEXP" - } - } - } - environment { - MVN_COMMAND = "${MVN_BASE} --show-version --batch-mode --errors --fail-at-end -DinstallAtEnd=true -DdeployAtEnd=true " - LANG="fr_FR.UTF-8" // to bypass dateformat problem - } - steps { - updateGitlabCommitStatus name: 'mergerequest', state: "running" - dir('sources') { - script { - docker.withRegistry("http://${env.SERVICE_DOCKER_PULL_URL}") { - // minIO SSL first - docker.image("${env.SERVICE_DOCKER_PULL_URL}/minio/minio:${env.MINIO_VERSION}").withRun("--user \$(id -u):\$(id -g) -p 127.0.0.1:9000:9000 -v ${pwd}/dataminiossl:/data -v ${WORKSPACE}/sources/common/common-storage/src/test/resources/s3/tls/private.key:/root/.minio/certs/private.key -v ${WORKSPACE}/sources/common/common-storage/src/test/resources/s3/tls/public.crt:/root/.minio/certs/public.crt -e \"MINIO_ACCESS_KEY=MKU4HW1K9HSST78MDY3T\" -e \"MINIO_SECRET_KEY=aSyBSStwp4JDZzpNKeJCc0Rdn12hOTa0EFejFfkd\"",'server /data') { o -> - docker.image("${env.SERVICE_DOCKER_PULL_URL}/elasticsearch:${env.ES_VERSION}").withRun('-p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e "cluster.name=elasticsearch-data"') { d -> - sh 'while ! curl -v http://localhost:9200; do sleep 2; done' - sh 'curl -X PUT http://localhost:9200/_template/default -H \'Content-Type: application/json\' -d \'{"index_patterns": ["*"],"order": -1,"settings": {"number_of_shards": "1","number_of_replicas": "0"}}\'' - docker.image("${env.SERVICE_DOCKER_PULL_URL}/mongo:${env.MONGO_VERSION}").withRun('-p 27017:27017 -v ${WORKSPACE}/vitam-conf-dev/tests/initdb.d/:/docker-entrypoint-initdb.d/ --health-cmd "test $$(echo "rs.status().ok" | mongo --quiet) -eq 1" --health-start-period 30s --health-interval 10s','mongod --bind_ip_all --replSet rs0') { i -> - //minIO without SSL - docker.image("${env.SERVICE_DOCKER_PULL_URL}/minio/minio:${env.MINIO_VERSION}").withRun("--user \$(id -u):\$(id -g) -p 127.0.0.1:9999:9000 -v ${pwd}/dataminio:/data -e \"MINIO_ACCESS_KEY=MKU4HW1K9HSST78MDY3T\" -e \"MINIO_SECRET_KEY=aSyBSStwp4JDZzpNKeJCc0Rdn12hOTa0EFejFfkd\"",'server /data') { l -> - docker.image("${env.SERVICE_DOCKER_PULL_URL}/openio/sds:${env.OPENIO_VERSION}").withRun("-p 127.0.0.1:6007:6007 -e \"REGION=us-west-1\"") { e -> - sh '$MVN_COMMAND -f pom.xml clean verify org.owasp:dependency-check-maven:aggregate sonar:sonar -Dsonar.branch=$GIT_BRANCH -Ddownloader.quick.query.timestamp=false' - } - } - } - } - } - } - } - } - } - post { - always { - junit 'sources/**/target/surefire-reports/*.xml' - } - success { - archiveArtifacts ( - artifacts: '**/dependency-check-report.html' - , fingerprint: true - , allowEmptyArchive: true + // stage ("Execute unit and integration tests on merge requests") { + // when { + // not{ + // anyOf { + // branch "develop*" + // branch "master_*" + // branch "master" + // branch "PR*" // do not try to update on github status + // tag pattern: "^[1-9]+\\.[0-9]+\\.[0-9]+-?[0-9]*\$", comparator: "REGEXP" + // } + // } + // } + // environment { + // MVN_COMMAND = "${MVN_BASE} --show-version --batch-mode --errors --fail-at-end -DinstallAtEnd=true -DdeployAtEnd=true " + // LANG="fr_FR.UTF-8" // to bypass dateformat problem + // } + // steps { + // updateGitlabCommitStatus name: 'mergerequest', state: "running" + // dir('sources') { + // script { + // docker.withRegistry("http://${env.SERVICE_DOCKER_PULL_URL}") { + // // minIO SSL first + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/minio/minio:${env.MINIO_VERSION}").withRun("--user \$(id -u):\$(id -g) -p 127.0.0.1:9000:9000 -v ${pwd}/dataminiossl:/data -v ${WORKSPACE}/sources/common/common-storage/src/test/resources/s3/tls/private.key:/root/.minio/certs/private.key -v ${WORKSPACE}/sources/common/common-storage/src/test/resources/s3/tls/public.crt:/root/.minio/certs/public.crt -e \"MINIO_ACCESS_KEY=MKU4HW1K9HSST78MDY3T\" -e \"MINIO_SECRET_KEY=aSyBSStwp4JDZzpNKeJCc0Rdn12hOTa0EFejFfkd\"",'server /data') { o -> + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/elasticsearch:${env.ES_VERSION}").withRun('-p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e "cluster.name=elasticsearch-data"') { d -> + // sh 'while ! curl -v http://localhost:9200; do sleep 2; done' + // sh 'curl -X PUT http://localhost:9200/_template/default -H \'Content-Type: application/json\' -d \'{"index_patterns": ["*"],"order": -1,"settings": {"number_of_shards": "1","number_of_replicas": "0"}}\'' + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/mongo:${env.MONGO_VERSION}").withRun('-p 27017:27017 -v ${WORKSPACE}/vitam-conf-dev/tests/initdb.d/:/docker-entrypoint-initdb.d/ --health-cmd "test $$(echo "rs.status().ok" | mongo --quiet) -eq 1" --health-start-period 30s --health-interval 10s','mongod --bind_ip_all --replSet rs0') { i -> + // //minIO without SSL + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/minio/minio:${env.MINIO_VERSION}").withRun("--user \$(id -u):\$(id -g) -p 127.0.0.1:9999:9000 -v ${pwd}/dataminio:/data -e \"MINIO_ACCESS_KEY=MKU4HW1K9HSST78MDY3T\" -e \"MINIO_SECRET_KEY=aSyBSStwp4JDZzpNKeJCc0Rdn12hOTa0EFejFfkd\"",'server /data') { l -> + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/openio/sds:${env.OPENIO_VERSION}").withRun("-p 127.0.0.1:6007:6007 -e \"REGION=us-west-1\"") { e -> + // sh '$MVN_COMMAND -f pom.xml clean verify org.owasp:dependency-check-maven:aggregate sonar:sonar -Dsonar.branch=$GIT_BRANCH -Ddownloader.quick.query.timestamp=false' + // } + // } + // } + // } + // } + // } + // } + // } + // } + // post { + // always { + // junit 'sources/**/target/surefire-reports/*.xml' + // } + // success { + // archiveArtifacts ( + // artifacts: '**/dependency-check-report.html' + // , fingerprint: true + // , allowEmptyArchive: true - ) - updateGitlabCommitStatus name: 'mergerequest', state: "success" - addGitLabMRComment comment: "pipeline-job : [analyse sonar](https://sonar.dev.programmevitam.fr/dashboard?id=fr.gouv.vitam%3Aparent%3A${gitlabSourceBranch}) de la branche" - } - failure { - updateGitlabCommitStatus name: 'mergerequest', state: "failed" - } - unstable { - updateGitlabCommitStatus name: 'mergerequest', state: "failed" - } - aborted { - updateGitlabCommitStatus name: 'mergerequest', state: "canceled" - } - } - } + // ) + // updateGitlabCommitStatus name: 'mergerequest', state: "success" + // addGitLabMRComment comment: "pipeline-job : [analyse sonar](https://sonar.dev.programmevitam.fr/dashboard?id=fr.gouv.vitam%3Aparent%3A${gitlabSourceBranch}) de la branche" + // } + // failure { + // updateGitlabCommitStatus name: 'mergerequest', state: "failed" + // } + // unstable { + // updateGitlabCommitStatus name: 'mergerequest', state: "failed" + // } + // aborted { + // updateGitlabCommitStatus name: 'mergerequest', state: "canceled" + // } + // } + // } - stage ("Execute unit and integration tests on pull requests") { - when { - branch "PR*" // do not try to update on github status - } - environment { - MVN_COMMAND = "${MVN_BASE} --show-version --batch-mode --errors --fail-at-end -DinstallAtEnd=true -DdeployAtEnd=true " - LANG="fr_FR.UTF-8" // to bypass dateformat problem - } - steps { - // updateGitlabCommitStatus name: 'mergerequest', state: "running" - // script { - githubNotify status: "PENDING", description: "Building & testing", credentialsId: "vitam-prg-token" - // } - dir('sources') { - script { - docker.withRegistry("http://${env.SERVICE_DOCKER_PULL_URL}") { - // minIO SSL first - docker.image("${env.SERVICE_DOCKER_PULL_URL}/minio/minio:${env.MINIO_VERSION}").withRun("--user \$(id -u):\$(id -g) -p 127.0.0.1:9000:9000 -v ${pwd}/dataminiossl:/data -v ${WORKSPACE}/sources/common/common-storage/src/test/resources/s3/tls:/root/.minio/certs -e \"MINIO_ACCESS_KEY=MKU4HW1K9HSST78MDY3T\" -e \"MINIO_SECRET_KEY=aSyBSStwp4JDZzpNKeJCc0Rdn12hOTa0EFejFfkd\"",'server /data') { o -> - docker.image("${env.SERVICE_DOCKER_PULL_URL}/elasticsearch:${env.ES_VERSION}").withRun('-p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e "cluster.name=elasticsearch-data"') { d -> - sh 'while ! curl -v http://localhost:9200; do sleep 2; done' - sh 'curl -X PUT http://localhost:9200/_template/default -H \'Content-Type: application/json\' -d \'{"index_patterns": ["*"],"order": -1,"settings": {"number_of_shards": "1","number_of_replicas": "0"}}\'' - docker.image("${env.SERVICE_DOCKER_PULL_URL}/mongo:${env.MONGO_VERSION}").withRun('-p 27017:27017 -v ${WORKSPACE}/vitam-conf-dev/tests/initdb.d/:/docker-entrypoint-initdb.d/ --health-cmd "test $$(echo "rs.status().ok" | mongo --quiet) -eq 1" --health-start-period 30s --health-interval 10s','mongod --bind_ip_all --replSet rs0') { i -> - //minIO without SSL - docker.image("${env.SERVICE_DOCKER_PULL_URL}/minio/minio:${env.MINIO_VERSION}").withRun("--user \$(id -u):\$(id -g) -p 127.0.0.1:9999:9000 -v ${pwd}/dataminio:/data -e \"MINIO_ACCESS_KEY=MKU4HW1K9HSST78MDY3T\" -e \"MINIO_SECRET_KEY=aSyBSStwp4JDZzpNKeJCc0Rdn12hOTa0EFejFfkd\"",'server /data') { l -> - docker.image("${env.SERVICE_DOCKER_PULL_URL}/openio/sds:${env.OPENIO_VERSION}").withRun("-p 127.0.0.1:6007:6007 -e \"REGION=us-west-1\"") { e -> - sh '$MVN_COMMAND -f pom.xml clean verify org.owasp:dependency-check-maven:aggregate sonar:sonar -Dsonar.branch=$GIT_BRANCH -Ddownloader.quick.query.timestamp=false' - } - } - } - } - } - } - } - } - } - post { - always { - junit 'sources/**/target/surefire-reports/*.xml' - } - success { - archiveArtifacts ( - artifacts: '**/dependency-check-report.html' - , fingerprint: true - , allowEmptyArchive: true + // stage ("Execute unit and integration tests on pull requests") { + // when { + // branch "PR*" // do not try to update on github status + // } + // environment { + // MVN_COMMAND = "${MVN_BASE} --show-version --batch-mode --errors --fail-at-end -DinstallAtEnd=true -DdeployAtEnd=true " + // LANG="fr_FR.UTF-8" // to bypass dateformat problem + // } + // steps { + // // updateGitlabCommitStatus name: 'mergerequest', state: "running" + // // script { + // githubNotify status: "PENDING", description: "Building & testing", credentialsId: "vitam-prg-token" + // // } + // dir('sources') { + // script { + // docker.withRegistry("http://${env.SERVICE_DOCKER_PULL_URL}") { + // // minIO SSL first + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/minio/minio:${env.MINIO_VERSION}").withRun("--user \$(id -u):\$(id -g) -p 127.0.0.1:9000:9000 -v ${pwd}/dataminiossl:/data -v ${WORKSPACE}/sources/common/common-storage/src/test/resources/s3/tls:/root/.minio/certs -e \"MINIO_ACCESS_KEY=MKU4HW1K9HSST78MDY3T\" -e \"MINIO_SECRET_KEY=aSyBSStwp4JDZzpNKeJCc0Rdn12hOTa0EFejFfkd\"",'server /data') { o -> + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/elasticsearch:${env.ES_VERSION}").withRun('-p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e "cluster.name=elasticsearch-data"') { d -> + // sh 'while ! curl -v http://localhost:9200; do sleep 2; done' + // sh 'curl -X PUT http://localhost:9200/_template/default -H \'Content-Type: application/json\' -d \'{"index_patterns": ["*"],"order": -1,"settings": {"number_of_shards": "1","number_of_replicas": "0"}}\'' + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/mongo:${env.MONGO_VERSION}").withRun('-p 27017:27017 -v ${WORKSPACE}/vitam-conf-dev/tests/initdb.d/:/docker-entrypoint-initdb.d/ --health-cmd "test $$(echo "rs.status().ok" | mongo --quiet) -eq 1" --health-start-period 30s --health-interval 10s','mongod --bind_ip_all --replSet rs0') { i -> + // //minIO without SSL + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/minio/minio:${env.MINIO_VERSION}").withRun("--user \$(id -u):\$(id -g) -p 127.0.0.1:9999:9000 -v ${pwd}/dataminio:/data -e \"MINIO_ACCESS_KEY=MKU4HW1K9HSST78MDY3T\" -e \"MINIO_SECRET_KEY=aSyBSStwp4JDZzpNKeJCc0Rdn12hOTa0EFejFfkd\"",'server /data') { l -> + // docker.image("${env.SERVICE_DOCKER_PULL_URL}/openio/sds:${env.OPENIO_VERSION}").withRun("-p 127.0.0.1:6007:6007 -e \"REGION=us-west-1\"") { e -> + // sh '$MVN_COMMAND -f pom.xml clean verify org.owasp:dependency-check-maven:aggregate sonar:sonar -Dsonar.branch=$GIT_BRANCH -Ddownloader.quick.query.timestamp=false' + // } + // } + // } + // } + // } + // } + // } + // } + // } + // post { + // always { + // junit 'sources/**/target/surefire-reports/*.xml' + // } + // success { + // archiveArtifacts ( + // artifacts: '**/dependency-check-report.html' + // , fingerprint: true + // , allowEmptyArchive: true - ) - githubNotify status: "SUCCESS", description: "Build successul", credentialsId: "vitam-prg-token" - } - failure { - githubNotify status: "FAILURE", description: "Build failed", credentialsId: "vitam-prg-token" - } - unstable { - githubNotify status: "FAILURE", description: "Build unstable", credentialsId: "vitam-prg-token" - } - aborted { - githubNotify status: "ERROR", description: "Build canceled", credentialsId: "vitam-prg-token" - } - } - } + // ) + // githubNotify status: "SUCCESS", description: "Build successul", credentialsId: "vitam-prg-token" + // } + // failure { + // githubNotify status: "FAILURE", description: "Build failed", credentialsId: "vitam-prg-token" + // } + // unstable { + // githubNotify status: "FAILURE", description: "Build unstable", credentialsId: "vitam-prg-token" + // } + // aborted { + // githubNotify status: "ERROR", description: "Build canceled", credentialsId: "vitam-prg-token" + // } + // } + // } stage("Build packages") { diff --git a/doc/library-server/pom.xml b/doc/library-server/pom.xml index e2532834fc0..c098ed102c6 100644 --- a/doc/library-server/pom.xml +++ b/doc/library-server/pom.xml @@ -7,7 +7,7 @@ fr.gouv.vitam parent ../../sources/pom.xml - 4.0.1-SNAPSHOT + 4.0.0 library-server diff --git a/doc/pom.xml b/doc/pom.xml index f7f386df9d2..ba4f1b6626f 100644 --- a/doc/pom.xml +++ b/doc/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 ../sources/pom.xml diff --git a/packaging/pom.xml b/packaging/pom.xml index d8c38593c74..9ea624ba22e 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 ../sources/pom.xml vitam-package diff --git a/sources/access/access-external/access-external-api/pom.xml b/sources/access/access-external/access-external-api/pom.xml index 9a52fad68d2..9dd21d6b070 100644 --- a/sources/access/access-external/access-external-api/pom.xml +++ b/sources/access/access-external/access-external-api/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam access-external - 4.0.1-SNAPSHOT + 4.0.0 access-external-api access-external-api diff --git a/sources/access/access-external/access-external-client/pom.xml b/sources/access/access-external/access-external-client/pom.xml index eb919d58c29..bcaa263a1f5 100644 --- a/sources/access/access-external/access-external-client/pom.xml +++ b/sources/access/access-external/access-external-client/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam access-external - 4.0.1-SNAPSHOT + 4.0.0 access-external-client Access External Client diff --git a/sources/access/access-external/access-external-common/pom.xml b/sources/access/access-external/access-external-common/pom.xml index 2ea73925ca2..b656849a833 100644 --- a/sources/access/access-external/access-external-common/pom.xml +++ b/sources/access/access-external/access-external-common/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam access-external - 4.0.1-SNAPSHOT + 4.0.0 access-external-common access-external-common diff --git a/sources/access/access-external/access-external-rest/pom.xml b/sources/access/access-external/access-external-rest/pom.xml index 7773d4c975d..665ab38c7d1 100644 --- a/sources/access/access-external/access-external-rest/pom.xml +++ b/sources/access/access-external/access-external-rest/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam access-external - 4.0.1-SNAPSHOT + 4.0.0 access-external-rest Access External Rest diff --git a/sources/access/access-external/pom.xml b/sources/access/access-external/pom.xml index 8158e819da4..fbc91dc4485 100644 --- a/sources/access/access-external/pom.xml +++ b/sources/access/access-external/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam access - 4.0.1-SNAPSHOT + 4.0.0 access-external Access External diff --git a/sources/access/access-internal/access-internal-api/pom.xml b/sources/access/access-internal/access-internal-api/pom.xml index 7e962d141ec..4a690ee81bf 100644 --- a/sources/access/access-internal/access-internal-api/pom.xml +++ b/sources/access/access-internal/access-internal-api/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam access-internal - 4.0.1-SNAPSHOT + 4.0.0 access-internal-api diff --git a/sources/access/access-internal/access-internal-client/pom.xml b/sources/access/access-internal/access-internal-client/pom.xml index 8c611e17bb5..eb6509994d6 100644 --- a/sources/access/access-internal/access-internal-client/pom.xml +++ b/sources/access/access-internal/access-internal-client/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam access-internal - 4.0.1-SNAPSHOT + 4.0.0 access-internal-client diff --git a/sources/access/access-internal/access-internal-common/pom.xml b/sources/access/access-internal/access-internal-common/pom.xml index 44b24f2be82..0389200a33e 100644 --- a/sources/access/access-internal/access-internal-common/pom.xml +++ b/sources/access/access-internal/access-internal-common/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam access-internal - 4.0.1-SNAPSHOT + 4.0.0 access-internal-common Access Internal Common diff --git a/sources/access/access-internal/access-internal-core/pom.xml b/sources/access/access-internal/access-internal-core/pom.xml index 8f29b06a49d..2fe606a102e 100644 --- a/sources/access/access-internal/access-internal-core/pom.xml +++ b/sources/access/access-internal/access-internal-core/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam access-internal - 4.0.1-SNAPSHOT + 4.0.0 access-internal-core diff --git a/sources/access/access-internal/access-internal-rest/pom.xml b/sources/access/access-internal/access-internal-rest/pom.xml index 0d3b73b15cd..584affbf211 100644 --- a/sources/access/access-internal/access-internal-rest/pom.xml +++ b/sources/access/access-internal/access-internal-rest/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam access-internal - 4.0.1-SNAPSHOT + 4.0.0 access-internal-rest diff --git a/sources/access/access-internal/pom.xml b/sources/access/access-internal/pom.xml index e6f234b390b..5b67af57590 100644 --- a/sources/access/access-internal/pom.xml +++ b/sources/access/access-internal/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam access - 4.0.1-SNAPSHOT + 4.0.0 access-internal pom diff --git a/sources/access/pom.xml b/sources/access/pom.xml index bccb4aa0611..6675c6a58bd 100644 --- a/sources/access/pom.xml +++ b/sources/access/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 access diff --git a/sources/batch-report/batch-report-client/pom.xml b/sources/batch-report/batch-report-client/pom.xml index 09067efda27..1889b70e083 100644 --- a/sources/batch-report/batch-report-client/pom.xml +++ b/sources/batch-report/batch-report-client/pom.xml @@ -5,7 +5,7 @@ batch-report fr.gouv.vitam - 4.0.1-SNAPSHOT + 4.0.0 4.0.0 diff --git a/sources/batch-report/batch-report-common/pom.xml b/sources/batch-report/batch-report-common/pom.xml index 9186a6d3543..571ddde956e 100644 --- a/sources/batch-report/batch-report-common/pom.xml +++ b/sources/batch-report/batch-report-common/pom.xml @@ -6,7 +6,7 @@ batch-report fr.gouv.vitam - 4.0.1-SNAPSHOT + 4.0.0 batch-report-common diff --git a/sources/batch-report/batch-report-rest/pom.xml b/sources/batch-report/batch-report-rest/pom.xml index c4e5d268ef7..91a111e331a 100644 --- a/sources/batch-report/batch-report-rest/pom.xml +++ b/sources/batch-report/batch-report-rest/pom.xml @@ -5,7 +5,7 @@ batch-report fr.gouv.vitam - 4.0.1-SNAPSHOT + 4.0.0 4.0.0 diff --git a/sources/batch-report/pom.xml b/sources/batch-report/pom.xml index c3dff1f4cda..7a7c85b3394 100644 --- a/sources/batch-report/pom.xml +++ b/sources/batch-report/pom.xml @@ -6,7 +6,7 @@ parent fr.gouv.vitam - 4.0.1-SNAPSHOT + 4.0.0 batch-report diff --git a/sources/common/common-database-vitam/common-database-private/pom.xml b/sources/common/common-database-vitam/common-database-private/pom.xml index 087fbd5d5f7..b6cc0f60cd8 100644 --- a/sources/common/common-database-vitam/common-database-private/pom.xml +++ b/sources/common/common-database-vitam/common-database-private/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam common-database-vitam - 4.0.1-SNAPSHOT + 4.0.0 common-database-private Common Database Private diff --git a/sources/common/common-database-vitam/common-database-public/pom.xml b/sources/common/common-database-vitam/common-database-public/pom.xml index 4e1efc29f5a..fa1e0a697cc 100644 --- a/sources/common/common-database-vitam/common-database-public/pom.xml +++ b/sources/common/common-database-vitam/common-database-public/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam common-database-vitam - 4.0.1-SNAPSHOT + 4.0.0 common-database-public Common Database Public diff --git a/sources/common/common-database-vitam/pom.xml b/sources/common/common-database-vitam/pom.xml index 894cd3dc423..a1b6211ab1f 100644 --- a/sources/common/common-database-vitam/pom.xml +++ b/sources/common/common-database-vitam/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam common - 4.0.1-SNAPSHOT + 4.0.0 common-database-vitam pom diff --git a/sources/common/common-dsl-schema/pom.xml b/sources/common/common-dsl-schema/pom.xml index 5d042550cc1..d8e99d04a47 100644 --- a/sources/common/common-dsl-schema/pom.xml +++ b/sources/common/common-dsl-schema/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam common - 4.0.1-SNAPSHOT + 4.0.0 common-dsl-schema common-dsl-schema diff --git a/sources/common/common-format-identification/pom.xml b/sources/common/common-format-identification/pom.xml index 1fe6d11a6ed..1db63304e31 100644 --- a/sources/common/common-format-identification/pom.xml +++ b/sources/common/common-format-identification/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam common - 4.0.1-SNAPSHOT + 4.0.0 common-format-identification Common for Format Identification diff --git a/sources/common/common-http-interface/pom.xml b/sources/common/common-http-interface/pom.xml index 1605dc73a99..36857e12473 100755 --- a/sources/common/common-http-interface/pom.xml +++ b/sources/common/common-http-interface/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam common - 4.0.1-SNAPSHOT + 4.0.0 common-http-interface common-http-interface diff --git a/sources/common/common-junit/pom.xml b/sources/common/common-junit/pom.xml index 2d71cf56aa1..9be303fa547 100644 --- a/sources/common/common-junit/pom.xml +++ b/sources/common/common-junit/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam common - 4.0.1-SNAPSHOT + 4.0.0 common-junit Common for Junit diff --git a/sources/common/common-plugin/pom.xml b/sources/common/common-plugin/pom.xml index 793482583d7..a8bc7873b90 100644 --- a/sources/common/common-plugin/pom.xml +++ b/sources/common/common-plugin/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam common - 4.0.1-SNAPSHOT + 4.0.0 common-plugin diff --git a/sources/common/common-private/pom.xml b/sources/common/common-private/pom.xml index fb97f338558..110e84ee690 100644 --- a/sources/common/common-private/pom.xml +++ b/sources/common/common-private/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam common - 4.0.1-SNAPSHOT + 4.0.0 common-private common-private diff --git a/sources/common/common-public-client/pom.xml b/sources/common/common-public-client/pom.xml index 174752f6665..3665defa7ed 100644 --- a/sources/common/common-public-client/pom.xml +++ b/sources/common/common-public-client/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam common - 4.0.1-SNAPSHOT + 4.0.0 common-public-client common-public-client diff --git a/sources/common/common-public/pom.xml b/sources/common/common-public/pom.xml index 64d3f9c8cdc..379ff277e1d 100644 --- a/sources/common/common-public/pom.xml +++ b/sources/common/common-public/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam common - 4.0.1-SNAPSHOT + 4.0.0 common-public common-public diff --git a/sources/common/common-security/pom.xml b/sources/common/common-security/pom.xml index bf4bb74d360..c82e6879e03 100644 --- a/sources/common/common-security/pom.xml +++ b/sources/common/common-security/pom.xml @@ -7,7 +7,7 @@ fr.gouv.vitam common - 4.0.1-SNAPSHOT + 4.0.0 common-security diff --git a/sources/common/common-storage/pom.xml b/sources/common/common-storage/pom.xml index c552a9d035f..f6d2f029c3d 100644 --- a/sources/common/common-storage/pom.xml +++ b/sources/common/common-storage/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam common - 4.0.1-SNAPSHOT + 4.0.0 common-storage common storage diff --git a/sources/common/fake-storage-drivers/fake_driver/pom.xml b/sources/common/fake-storage-drivers/fake_driver/pom.xml index 7275fcf78ab..51ddd7ae948 100644 --- a/sources/common/fake-storage-drivers/fake_driver/pom.xml +++ b/sources/common/fake-storage-drivers/fake_driver/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam fake-storage-drivers - 4.0.1-SNAPSHOT + 4.0.0 fake-driver Fake Driver for Junit diff --git a/sources/common/fake-storage-drivers/pom.xml b/sources/common/fake-storage-drivers/pom.xml index c632d27e2d6..1829850a768 100644 --- a/sources/common/fake-storage-drivers/pom.xml +++ b/sources/common/fake-storage-drivers/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam common - 4.0.1-SNAPSHOT + 4.0.0 fake-storage-drivers diff --git a/sources/common/pom.xml b/sources/common/pom.xml index fbe4e2854e8..c754184b42f 100644 --- a/sources/common/pom.xml +++ b/sources/common/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 common diff --git a/sources/elastic-kibana-interceptor/elastic-kibana-interceptor-rest/pom.xml b/sources/elastic-kibana-interceptor/elastic-kibana-interceptor-rest/pom.xml index b1fb3f2ea48..abf69ae31e2 100644 --- a/sources/elastic-kibana-interceptor/elastic-kibana-interceptor-rest/pom.xml +++ b/sources/elastic-kibana-interceptor/elastic-kibana-interceptor-rest/pom.xml @@ -6,7 +6,7 @@ elastic-kibana-interceptor fr.gouv.vitam - 4.0.1-SNAPSHOT + 4.0.0 elastic-kibana-interceptor-rest diff --git a/sources/elastic-kibana-interceptor/pom.xml b/sources/elastic-kibana-interceptor/pom.xml index ed538201bb6..e2bfaf931c1 100644 --- a/sources/elastic-kibana-interceptor/pom.xml +++ b/sources/elastic-kibana-interceptor/pom.xml @@ -6,7 +6,7 @@ parent fr.gouv.vitam - 4.0.1-SNAPSHOT + 4.0.0 elastic-kibana-interceptor diff --git a/sources/functional-administration/functional-administration-accession-register/functional-administration-accession-register-core/pom.xml b/sources/functional-administration/functional-administration-accession-register/functional-administration-accession-register-core/pom.xml index ce66ac2ddfc..f2a72df1019 100644 --- a/sources/functional-administration/functional-administration-accession-register/functional-administration-accession-register-core/pom.xml +++ b/sources/functional-administration/functional-administration-accession-register/functional-administration-accession-register-core/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam functional-administration-accession-register - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-accession-register-core diff --git a/sources/functional-administration/functional-administration-accession-register/pom.xml b/sources/functional-administration/functional-administration-accession-register/pom.xml index 182c5c2a476..8526d10c696 100644 --- a/sources/functional-administration/functional-administration-accession-register/pom.xml +++ b/sources/functional-administration/functional-administration-accession-register/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-accession-register functional-administration-accession-register diff --git a/sources/functional-administration/functional-administration-agencies-contracts/pom.xml b/sources/functional-administration/functional-administration-agencies-contracts/pom.xml index 219b4123a0f..51fc080f9e6 100644 --- a/sources/functional-administration/functional-administration-agencies-contracts/pom.xml +++ b/sources/functional-administration/functional-administration-agencies-contracts/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-agencies-contracts diff --git a/sources/functional-administration/functional-administration-agencies/pom.xml b/sources/functional-administration/functional-administration-agencies/pom.xml index 31cbcc9b7ed..7ecf9a4588c 100644 --- a/sources/functional-administration/functional-administration-agencies/pom.xml +++ b/sources/functional-administration/functional-administration-agencies/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-agencies diff --git a/sources/functional-administration/functional-administration-archive-unit-profiles/pom.xml b/sources/functional-administration/functional-administration-archive-unit-profiles/pom.xml index 58263fbcef1..6569161f53b 100644 --- a/sources/functional-administration/functional-administration-archive-unit-profiles/pom.xml +++ b/sources/functional-administration/functional-administration-archive-unit-profiles/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-archive-unit-profiles diff --git a/sources/functional-administration/functional-administration-audit/pom.xml b/sources/functional-administration/functional-administration-audit/pom.xml index facd24540f3..80e507abb68 100644 --- a/sources/functional-administration/functional-administration-audit/pom.xml +++ b/sources/functional-administration/functional-administration-audit/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-audit diff --git a/sources/functional-administration/functional-administration-client/pom.xml b/sources/functional-administration/functional-administration-client/pom.xml index 2cfc1ddde00..1a4462f7d40 100644 --- a/sources/functional-administration/functional-administration-client/pom.xml +++ b/sources/functional-administration/functional-administration-client/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-client functional-administration-client diff --git a/sources/functional-administration/functional-administration-common/pom.xml b/sources/functional-administration/functional-administration-common/pom.xml index a9d278d9398..8320840096b 100644 --- a/sources/functional-administration/functional-administration-common/pom.xml +++ b/sources/functional-administration/functional-administration-common/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-common functional-administration-common diff --git a/sources/functional-administration/functional-administration-context/pom.xml b/sources/functional-administration/functional-administration-context/pom.xml index 787bb5f87a5..51f92f97686 100644 --- a/sources/functional-administration/functional-administration-context/pom.xml +++ b/sources/functional-administration/functional-administration-context/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-context diff --git a/sources/functional-administration/functional-administration-contract/pom.xml b/sources/functional-administration/functional-administration-contract/pom.xml index 48f97448acc..ac1c669c8c2 100644 --- a/sources/functional-administration/functional-administration-contract/pom.xml +++ b/sources/functional-administration/functional-administration-contract/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-contract diff --git a/sources/functional-administration/functional-administration-format/functional-administration-format-core/pom.xml b/sources/functional-administration/functional-administration-format/functional-administration-format-core/pom.xml index 85719b7f70a..9ebd26cbba8 100644 --- a/sources/functional-administration/functional-administration-format/functional-administration-format-core/pom.xml +++ b/sources/functional-administration/functional-administration-format/functional-administration-format-core/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam functional-administration-format - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-format-core functional-administration-format-core diff --git a/sources/functional-administration/functional-administration-format/pom.xml b/sources/functional-administration/functional-administration-format/pom.xml index 383671b50ca..918c6b2e3a1 100644 --- a/sources/functional-administration/functional-administration-format/pom.xml +++ b/sources/functional-administration/functional-administration-format/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-format functional-administration-format diff --git a/sources/functional-administration/functional-administration-griffins/pom.xml b/sources/functional-administration/functional-administration-griffins/pom.xml index 61752bbc845..a5c24d6d76f 100644 --- a/sources/functional-administration/functional-administration-griffins/pom.xml +++ b/sources/functional-administration/functional-administration-griffins/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-griffins diff --git a/sources/functional-administration/functional-administration-ontologies/pom.xml b/sources/functional-administration/functional-administration-ontologies/pom.xml index fb803501923..835f0df7468 100644 --- a/sources/functional-administration/functional-administration-ontologies/pom.xml +++ b/sources/functional-administration/functional-administration-ontologies/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-ontologies diff --git a/sources/functional-administration/functional-administration-profile/pom.xml b/sources/functional-administration/functional-administration-profile/pom.xml index 8e99ba3d988..31ccc2f8aa5 100644 --- a/sources/functional-administration/functional-administration-profile/pom.xml +++ b/sources/functional-administration/functional-administration-profile/pom.xml @@ -32,7 +32,7 @@ functional-administration fr.gouv.vitam - 4.0.1-SNAPSHOT + 4.0.0 4.0.0 diff --git a/sources/functional-administration/functional-administration-rest/pom.xml b/sources/functional-administration/functional-administration-rest/pom.xml index 63ff2ad8ce8..478c47f4682 100644 --- a/sources/functional-administration/functional-administration-rest/pom.xml +++ b/sources/functional-administration/functional-administration-rest/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-rest functional-administration-rest diff --git a/sources/functional-administration/functional-administration-rules/functional-administration-rules-core/pom.xml b/sources/functional-administration/functional-administration-rules/functional-administration-rules-core/pom.xml index e5dd3c861a5..d121a81616a 100644 --- a/sources/functional-administration/functional-administration-rules/functional-administration-rules-core/pom.xml +++ b/sources/functional-administration/functional-administration-rules/functional-administration-rules-core/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam functional-administration-rules - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-rules-core diff --git a/sources/functional-administration/functional-administration-rules/pom.xml b/sources/functional-administration/functional-administration-rules/pom.xml index 6eb5cff4a9e..40689025a43 100644 --- a/sources/functional-administration/functional-administration-rules/pom.xml +++ b/sources/functional-administration/functional-administration-rules/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-rules pom diff --git a/sources/functional-administration/functional-administration-security-profile/pom.xml b/sources/functional-administration/functional-administration-security-profile/pom.xml index 40f8927bde9..1d7bcb227f2 100644 --- a/sources/functional-administration/functional-administration-security-profile/pom.xml +++ b/sources/functional-administration/functional-administration-security-profile/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam functional-administration - 4.0.1-SNAPSHOT + 4.0.0 functional-administration-security-profile diff --git a/sources/functional-administration/pom.xml b/sources/functional-administration/pom.xml index a60c56f89b6..134c3463673 100644 --- a/sources/functional-administration/pom.xml +++ b/sources/functional-administration/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 functional-administration Functional Administration diff --git a/sources/functional-test/pom.xml b/sources/functional-test/pom.xml index 740f519d46f..33302362eb5 100644 --- a/sources/functional-test/pom.xml +++ b/sources/functional-test/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 functional-test Functional test diff --git a/sources/hello-world-plugin/pom.xml b/sources/hello-world-plugin/pom.xml index 8c687af444b..b5d8f74e8e4 100644 --- a/sources/hello-world-plugin/pom.xml +++ b/sources/hello-world-plugin/pom.xml @@ -5,7 +5,7 @@ parent fr.gouv.vitam - 4.0.1-SNAPSHOT + 4.0.0 4.0.0 diff --git a/sources/ihm-demo/ihm-demo-common/pom.xml b/sources/ihm-demo/ihm-demo-common/pom.xml index 03a10b168c8..da656a02307 100644 --- a/sources/ihm-demo/ihm-demo-common/pom.xml +++ b/sources/ihm-demo/ihm-demo-common/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam ihm-demo - 4.0.1-SNAPSHOT + 4.0.0 ihm-demo-common diff --git a/sources/ihm-demo/ihm-demo-core/pom.xml b/sources/ihm-demo/ihm-demo-core/pom.xml index 35babcb5997..83921145b4a 100644 --- a/sources/ihm-demo/ihm-demo-core/pom.xml +++ b/sources/ihm-demo/ihm-demo-core/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam ihm-demo - 4.0.1-SNAPSHOT + 4.0.0 ihm-core ihm-core diff --git a/sources/ihm-demo/ihm-demo-front/pom.xml b/sources/ihm-demo/ihm-demo-front/pom.xml index d5793083368..7c9fafb6cf0 100644 --- a/sources/ihm-demo/ihm-demo-front/pom.xml +++ b/sources/ihm-demo/ihm-demo-front/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam ihm-demo - 4.0.1-SNAPSHOT + 4.0.0 ihm-demo-front diff --git a/sources/ihm-demo/ihm-demo-web-application/pom.xml b/sources/ihm-demo/ihm-demo-web-application/pom.xml index d9d1f7728ff..52f72ae0547 100644 --- a/sources/ihm-demo/ihm-demo-web-application/pom.xml +++ b/sources/ihm-demo/ihm-demo-web-application/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam ihm-demo - 4.0.1-SNAPSHOT + 4.0.0 ihm-demo-web-application ihm-demo-web-application diff --git a/sources/ihm-demo/pom.xml b/sources/ihm-demo/pom.xml index 7c9f9061473..4d3395a328f 100644 --- a/sources/ihm-demo/pom.xml +++ b/sources/ihm-demo/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 ihm-demo pom diff --git a/sources/ihm-recette/ihm-recette-web-application/pom.xml b/sources/ihm-recette/ihm-recette-web-application/pom.xml index a6c4497bfb8..b48625a3d04 100644 --- a/sources/ihm-recette/ihm-recette-web-application/pom.xml +++ b/sources/ihm-recette/ihm-recette-web-application/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam ihm-recette - 4.0.1-SNAPSHOT + 4.0.0 ihm-recette-web-application ihm-recette-web-application diff --git a/sources/ihm-recette/ihm-recette-web-front/pom.xml b/sources/ihm-recette/ihm-recette-web-front/pom.xml index 4a508467c56..a0baad3d0b1 100644 --- a/sources/ihm-recette/ihm-recette-web-front/pom.xml +++ b/sources/ihm-recette/ihm-recette-web-front/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam ihm-recette - 4.0.1-SNAPSHOT + 4.0.0 ihm-recette-front diff --git a/sources/ihm-recette/pom.xml b/sources/ihm-recette/pom.xml index 4f65a87481c..385b2c42ec2 100644 --- a/sources/ihm-recette/pom.xml +++ b/sources/ihm-recette/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 ihm-recette pom diff --git a/sources/ingest/ingest-external/ingest-external-api/pom.xml b/sources/ingest/ingest-external/ingest-external-api/pom.xml index cb3dc1f3d57..c50c308fcf1 100644 --- a/sources/ingest/ingest-external/ingest-external-api/pom.xml +++ b/sources/ingest/ingest-external/ingest-external-api/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam ingest-external - 4.0.1-SNAPSHOT + 4.0.0 ingest-external-api ingest-external-api diff --git a/sources/ingest/ingest-external/ingest-external-client/pom.xml b/sources/ingest/ingest-external/ingest-external-client/pom.xml index 68b59cd52e8..a3867f3ec85 100644 --- a/sources/ingest/ingest-external/ingest-external-client/pom.xml +++ b/sources/ingest/ingest-external/ingest-external-client/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam ingest-external - 4.0.1-SNAPSHOT + 4.0.0 ingest-external-client ingest-external-client diff --git a/sources/ingest/ingest-external/ingest-external-common/pom.xml b/sources/ingest/ingest-external/ingest-external-common/pom.xml index c5d2d82c54c..a59ba3d657f 100644 --- a/sources/ingest/ingest-external/ingest-external-common/pom.xml +++ b/sources/ingest/ingest-external/ingest-external-common/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam ingest-external - 4.0.1-SNAPSHOT + 4.0.0 ingest-external-common ingest-external-common diff --git a/sources/ingest/ingest-external/ingest-external-core/pom.xml b/sources/ingest/ingest-external/ingest-external-core/pom.xml index f6b48e17e0d..c83bd71952f 100644 --- a/sources/ingest/ingest-external/ingest-external-core/pom.xml +++ b/sources/ingest/ingest-external/ingest-external-core/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam ingest-external - 4.0.1-SNAPSHOT + 4.0.0 ingest-external-core ingest-external-core diff --git a/sources/ingest/ingest-external/ingest-external-rest/pom.xml b/sources/ingest/ingest-external/ingest-external-rest/pom.xml index ea09db043d5..102d2378310 100644 --- a/sources/ingest/ingest-external/ingest-external-rest/pom.xml +++ b/sources/ingest/ingest-external/ingest-external-rest/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam ingest-external - 4.0.1-SNAPSHOT + 4.0.0 ingest-external-rest ingest-external-rest diff --git a/sources/ingest/ingest-external/pom.xml b/sources/ingest/ingest-external/pom.xml index 3ce9b952382..52b0a95daf0 100644 --- a/sources/ingest/ingest-external/pom.xml +++ b/sources/ingest/ingest-external/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam ingest - 4.0.1-SNAPSHOT + 4.0.0 4.0.0 diff --git a/sources/ingest/ingest-internal/ingest-internal-api/pom.xml b/sources/ingest/ingest-internal/ingest-internal-api/pom.xml index 6e7db0be03d..0a54a5fe798 100644 --- a/sources/ingest/ingest-internal/ingest-internal-api/pom.xml +++ b/sources/ingest/ingest-internal/ingest-internal-api/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam ingest-internal - 4.0.1-SNAPSHOT + 4.0.0 ingest-internal-api diff --git a/sources/ingest/ingest-internal/ingest-internal-client/pom.xml b/sources/ingest/ingest-internal/ingest-internal-client/pom.xml index 2cf93d810c3..3930bf0fda4 100644 --- a/sources/ingest/ingest-internal/ingest-internal-client/pom.xml +++ b/sources/ingest/ingest-internal/ingest-internal-client/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam ingest-internal - 4.0.1-SNAPSHOT + 4.0.0 ingest-internal-client Ingest Internal Client diff --git a/sources/ingest/ingest-internal/ingest-internal-rest/pom.xml b/sources/ingest/ingest-internal/ingest-internal-rest/pom.xml index b113688eaa2..94e50238d97 100644 --- a/sources/ingest/ingest-internal/ingest-internal-rest/pom.xml +++ b/sources/ingest/ingest-internal/ingest-internal-rest/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam ingest-internal - 4.0.1-SNAPSHOT + 4.0.0 ingest-internal-rest diff --git a/sources/ingest/ingest-internal/pom.xml b/sources/ingest/ingest-internal/pom.xml index 3eb3705a756..afd80a2f642 100644 --- a/sources/ingest/ingest-internal/pom.xml +++ b/sources/ingest/ingest-internal/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam ingest - 4.0.1-SNAPSHOT + 4.0.0 4.0.0 diff --git a/sources/ingest/pom.xml b/sources/ingest/pom.xml index 78b4e667dbe..f7208dcb98d 100644 --- a/sources/ingest/pom.xml +++ b/sources/ingest/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 4.0.0 diff --git a/sources/integration-test/pom.xml b/sources/integration-test/pom.xml index fc7bc80cb22..a1638904b82 100644 --- a/sources/integration-test/pom.xml +++ b/sources/integration-test/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 integration-test All Integration Tests diff --git a/sources/internal-security/internal-security-client/pom.xml b/sources/internal-security/internal-security-client/pom.xml index b3182246a4b..8e2125ab486 100644 --- a/sources/internal-security/internal-security-client/pom.xml +++ b/sources/internal-security/internal-security-client/pom.xml @@ -7,7 +7,7 @@ fr.gouv.vitam internal-security - 4.0.1-SNAPSHOT + 4.0.0 internal-security-client diff --git a/sources/internal-security/internal-security-common/pom.xml b/sources/internal-security/internal-security-common/pom.xml index e6ef8ada3f5..868d50e3404 100644 --- a/sources/internal-security/internal-security-common/pom.xml +++ b/sources/internal-security/internal-security-common/pom.xml @@ -7,7 +7,7 @@ fr.gouv.vitam internal-security - 4.0.1-SNAPSHOT + 4.0.0 internal-security-common diff --git a/sources/internal-security/internal-security-rest/pom.xml b/sources/internal-security/internal-security-rest/pom.xml index 363e0ede474..29e4f625e7e 100644 --- a/sources/internal-security/internal-security-rest/pom.xml +++ b/sources/internal-security/internal-security-rest/pom.xml @@ -7,7 +7,7 @@ fr.gouv.vitam internal-security - 4.0.1-SNAPSHOT + 4.0.0 internal-security-rest diff --git a/sources/internal-security/pom.xml b/sources/internal-security/pom.xml index 44b80526ff7..79377c2ec87 100644 --- a/sources/internal-security/pom.xml +++ b/sources/internal-security/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 internal-security diff --git a/sources/logbook/logbook-administration-audit/pom.xml b/sources/logbook/logbook-administration-audit/pom.xml index 0a70082486e..5b1dfca8c6a 100644 --- a/sources/logbook/logbook-administration-audit/pom.xml +++ b/sources/logbook/logbook-administration-audit/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam logbook - 4.0.1-SNAPSHOT + 4.0.0 logbook-administration-audit Logbook Administration Audit diff --git a/sources/logbook/logbook-administration-lfc/pom.xml b/sources/logbook/logbook-administration-lfc/pom.xml index 4bbe89b548f..18e2229c8ab 100644 --- a/sources/logbook/logbook-administration-lfc/pom.xml +++ b/sources/logbook/logbook-administration-lfc/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam logbook - 4.0.1-SNAPSHOT + 4.0.0 logbook-administration-lfc Logbook Administration Lifecycle diff --git a/sources/logbook/logbook-administration/pom.xml b/sources/logbook/logbook-administration/pom.xml index c9826640e42..55df518aebb 100644 --- a/sources/logbook/logbook-administration/pom.xml +++ b/sources/logbook/logbook-administration/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam logbook - 4.0.1-SNAPSHOT + 4.0.0 logbook-administration Logbook Administration diff --git a/sources/logbook/logbook-common-client/pom.xml b/sources/logbook/logbook-common-client/pom.xml index 68bdc65e932..b367ef72be9 100644 --- a/sources/logbook/logbook-common-client/pom.xml +++ b/sources/logbook/logbook-common-client/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam logbook - 4.0.1-SNAPSHOT + 4.0.0 logbook-common-client Logbook Common Client diff --git a/sources/logbook/logbook-common-server/pom.xml b/sources/logbook/logbook-common-server/pom.xml index 860f248bf6c..be80139f11e 100644 --- a/sources/logbook/logbook-common-server/pom.xml +++ b/sources/logbook/logbook-common-server/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam logbook - 4.0.1-SNAPSHOT + 4.0.0 logbook-common-server Logbook Common Server diff --git a/sources/logbook/logbook-common/pom.xml b/sources/logbook/logbook-common/pom.xml index b549485be32..974f73b1c46 100644 --- a/sources/logbook/logbook-common/pom.xml +++ b/sources/logbook/logbook-common/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam logbook - 4.0.1-SNAPSHOT + 4.0.0 logbook-common Logbook Common diff --git a/sources/logbook/logbook-lifecycles-client/pom.xml b/sources/logbook/logbook-lifecycles-client/pom.xml index 3a47402d952..9462737afb7 100644 --- a/sources/logbook/logbook-lifecycles-client/pom.xml +++ b/sources/logbook/logbook-lifecycles-client/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam logbook - 4.0.1-SNAPSHOT + 4.0.0 logbook-lifecycles-client Logbook LifeCycles Client diff --git a/sources/logbook/logbook-lifecycles/pom.xml b/sources/logbook/logbook-lifecycles/pom.xml index 967c196b8c2..6891166cfd8 100644 --- a/sources/logbook/logbook-lifecycles/pom.xml +++ b/sources/logbook/logbook-lifecycles/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam logbook - 4.0.1-SNAPSHOT + 4.0.0 logbook-lifecycles Logbook LifeCycles diff --git a/sources/logbook/logbook-operations-client/pom.xml b/sources/logbook/logbook-operations-client/pom.xml index 9f304b0dc9b..455b9b0bf89 100644 --- a/sources/logbook/logbook-operations-client/pom.xml +++ b/sources/logbook/logbook-operations-client/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam logbook - 4.0.1-SNAPSHOT + 4.0.0 logbook-operations-client Logbook Operations Client diff --git a/sources/logbook/logbook-operations/pom.xml b/sources/logbook/logbook-operations/pom.xml index 7ad3c14d9cf..6f38b531d71 100644 --- a/sources/logbook/logbook-operations/pom.xml +++ b/sources/logbook/logbook-operations/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam logbook - 4.0.1-SNAPSHOT + 4.0.0 logbook-operations Logbook Operations diff --git a/sources/logbook/logbook-rest/pom.xml b/sources/logbook/logbook-rest/pom.xml index c77e87d727f..d874b21bee8 100644 --- a/sources/logbook/logbook-rest/pom.xml +++ b/sources/logbook/logbook-rest/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam logbook - 4.0.1-SNAPSHOT + 4.0.0 logbook-rest Logbook Rest diff --git a/sources/logbook/pom.xml b/sources/logbook/pom.xml index 83bf487cccb..75802870c46 100644 --- a/sources/logbook/pom.xml +++ b/sources/logbook/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 logbook diff --git a/sources/metadata/metadata-api/pom.xml b/sources/metadata/metadata-api/pom.xml index 917f64483bc..dd1c27fa2e0 100644 --- a/sources/metadata/metadata-api/pom.xml +++ b/sources/metadata/metadata-api/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam metadata - 4.0.1-SNAPSHOT + 4.0.0 metadata-api metadata Api diff --git a/sources/metadata/metadata-audit/pom.xml b/sources/metadata/metadata-audit/pom.xml index 2803281202d..78912fc9450 100644 --- a/sources/metadata/metadata-audit/pom.xml +++ b/sources/metadata/metadata-audit/pom.xml @@ -32,7 +32,7 @@ metadata fr.gouv.vitam - 4.0.1-SNAPSHOT + 4.0.0 4.0.0 diff --git a/sources/metadata/metadata-client/pom.xml b/sources/metadata/metadata-client/pom.xml index bb21a1ae4ac..35fd14554cc 100644 --- a/sources/metadata/metadata-client/pom.xml +++ b/sources/metadata/metadata-client/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam metadata - 4.0.1-SNAPSHOT + 4.0.0 metadata-client metadata Client diff --git a/sources/metadata/metadata-core/pom.xml b/sources/metadata/metadata-core/pom.xml index 73a8f0cda72..3f4072eec02 100644 --- a/sources/metadata/metadata-core/pom.xml +++ b/sources/metadata/metadata-core/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam metadata - 4.0.1-SNAPSHOT + 4.0.0 metadata-core metadata Core diff --git a/sources/metadata/metadata-rest/pom.xml b/sources/metadata/metadata-rest/pom.xml index ca5a0c6ac31..9cc8a3ad811 100644 --- a/sources/metadata/metadata-rest/pom.xml +++ b/sources/metadata/metadata-rest/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam metadata - 4.0.1-SNAPSHOT + 4.0.0 metadata-rest metadata Rest diff --git a/sources/metadata/pom.xml b/sources/metadata/pom.xml index 292a3c9e4f8..f6a938323bd 100644 --- a/sources/metadata/pom.xml +++ b/sources/metadata/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 metadata diff --git a/sources/pom.xml b/sources/pom.xml index 6c1755aee7c..9df2972e073 100644 --- a/sources/pom.xml +++ b/sources/pom.xml @@ -4,7 +4,7 @@ 4.0.0 fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 pom vitam-parent ${project.artifactId} @@ -152,7 +152,7 @@ 1.11.720 - 9.4.27.v20200227 + 11.0.1 1.3 diff --git a/sources/processing/pom.xml b/sources/processing/pom.xml index 80f6b2f9671..7320c98e6b1 100644 --- a/sources/processing/pom.xml +++ b/sources/processing/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 processing pom diff --git a/sources/processing/processing-common/pom.xml b/sources/processing/processing-common/pom.xml index ec96fd1f4fb..6ec0ebb1bf4 100644 --- a/sources/processing/processing-common/pom.xml +++ b/sources/processing/processing-common/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam processing - 4.0.1-SNAPSHOT + 4.0.0 processing-common diff --git a/sources/processing/processing-data/pom.xml b/sources/processing/processing-data/pom.xml index b9a3951c3fa..30292feb1fc 100644 --- a/sources/processing/processing-data/pom.xml +++ b/sources/processing/processing-data/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam processing - 4.0.1-SNAPSHOT + 4.0.0 processing-data processing-data diff --git a/sources/processing/processing-distributor/pom.xml b/sources/processing/processing-distributor/pom.xml index 419aeae0e98..a1d20aa7f92 100644 --- a/sources/processing/processing-distributor/pom.xml +++ b/sources/processing/processing-distributor/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam processing - 4.0.1-SNAPSHOT + 4.0.0 processing-distributor Processing Distributor diff --git a/sources/processing/processing-engine/pom.xml b/sources/processing/processing-engine/pom.xml index 64c0b6e2498..038cc669b4b 100644 --- a/sources/processing/processing-engine/pom.xml +++ b/sources/processing/processing-engine/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam processing - 4.0.1-SNAPSHOT + 4.0.0 processing-engine Processing Engine diff --git a/sources/processing/processing-management-client/pom.xml b/sources/processing/processing-management-client/pom.xml index 31ebe7d9644..5da3a5d758c 100644 --- a/sources/processing/processing-management-client/pom.xml +++ b/sources/processing/processing-management-client/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam processing - 4.0.1-SNAPSHOT + 4.0.0 processing-management-client Processing Management Client diff --git a/sources/processing/processing-management/pom.xml b/sources/processing/processing-management/pom.xml index 108795b7eef..5b800b389d8 100644 --- a/sources/processing/processing-management/pom.xml +++ b/sources/processing/processing-management/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam processing - 4.0.1-SNAPSHOT + 4.0.0 processing-management Processing Management diff --git a/sources/processing/processing-monitoring/pom.xml b/sources/processing/processing-monitoring/pom.xml index 2b712182512..dc10b8aef04 100644 --- a/sources/processing/processing-monitoring/pom.xml +++ b/sources/processing/processing-monitoring/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam processing - 4.0.1-SNAPSHOT + 4.0.0 processing-monitoring Processing Monitoring diff --git a/sources/storage-integration-multi-offers/pom.xml b/sources/storage-integration-multi-offers/pom.xml index f8418b6d6e3..5e14a80ff77 100644 --- a/sources/storage-integration-multi-offers/pom.xml +++ b/sources/storage-integration-multi-offers/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 storage-integration-multi-offers Storage Integration Test diff --git a/sources/storage-integration-nossl-test/pom.xml b/sources/storage-integration-nossl-test/pom.xml index 622258524e0..1d2fe56031c 100644 --- a/sources/storage-integration-nossl-test/pom.xml +++ b/sources/storage-integration-nossl-test/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 storage-integration-nossl-test Storage Integration NoSSL Test diff --git a/sources/storage-integration-test/pom.xml b/sources/storage-integration-test/pom.xml index 72142df65b9..08eb85bf624 100644 --- a/sources/storage-integration-test/pom.xml +++ b/sources/storage-integration-test/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 storage-integration-test Storage Integration Test diff --git a/sources/storage/cas-container/cas-container-swift/pom.xml b/sources/storage/cas-container/cas-container-swift/pom.xml index 8d2fb9a8d06..4e3008aeed9 100644 --- a/sources/storage/cas-container/cas-container-swift/pom.xml +++ b/sources/storage/cas-container/cas-container-swift/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam cas-container - 4.0.1-SNAPSHOT + 4.0.0 cas-container-swift diff --git a/sources/storage/cas-container/cas-container-utils/pom.xml b/sources/storage/cas-container/cas-container-utils/pom.xml index 19276165bff..4763356998a 100644 --- a/sources/storage/cas-container/cas-container-utils/pom.xml +++ b/sources/storage/cas-container/cas-container-utils/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam cas-container - 4.0.1-SNAPSHOT + 4.0.0 cas-container-utils diff --git a/sources/storage/cas-container/pom.xml b/sources/storage/cas-container/pom.xml index 2e3646dcdd3..b2ee4c0899b 100644 --- a/sources/storage/cas-container/pom.xml +++ b/sources/storage/cas-container/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam storage - 4.0.1-SNAPSHOT + 4.0.0 cas-container diff --git a/sources/storage/cas-manager/cas-manager-drivers/pom.xml b/sources/storage/cas-manager/cas-manager-drivers/pom.xml index e7c377643cb..69845cafdfa 100644 --- a/sources/storage/cas-manager/cas-manager-drivers/pom.xml +++ b/sources/storage/cas-manager/cas-manager-drivers/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam cas-manager - 4.0.1-SNAPSHOT + 4.0.0 cas-manager-drivers diff --git a/sources/storage/cas-manager/cas-manager-drivers/vitam-driver/pom.xml b/sources/storage/cas-manager/cas-manager-drivers/vitam-driver/pom.xml index b436978c7c8..afc70fa44e7 100644 --- a/sources/storage/cas-manager/cas-manager-drivers/vitam-driver/pom.xml +++ b/sources/storage/cas-manager/cas-manager-drivers/vitam-driver/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam cas-manager-drivers - 4.0.1-SNAPSHOT + 4.0.0 vitam-driver Vitam Offer Driver diff --git a/sources/storage/cas-manager/cas-tape-library/pom.xml b/sources/storage/cas-manager/cas-tape-library/pom.xml index 07dfcf462aa..d40506b3200 100644 --- a/sources/storage/cas-manager/cas-tape-library/pom.xml +++ b/sources/storage/cas-manager/cas-tape-library/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam cas-manager - 4.0.1-SNAPSHOT + 4.0.0 cas-tape-library Storage Tape Library diff --git a/sources/storage/cas-manager/pom.xml b/sources/storage/cas-manager/pom.xml index 37979646b94..5e313820b3b 100644 --- a/sources/storage/cas-manager/pom.xml +++ b/sources/storage/cas-manager/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam storage - 4.0.1-SNAPSHOT + 4.0.0 cas-manager diff --git a/sources/storage/cas-manager/vitam-offer/pom.xml b/sources/storage/cas-manager/vitam-offer/pom.xml index 36f43698c6e..eae3600a3a6 100644 --- a/sources/storage/cas-manager/vitam-offer/pom.xml +++ b/sources/storage/cas-manager/vitam-offer/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam cas-manager - 4.0.1-SNAPSHOT + 4.0.0 vitam-offer Storage Vitam Offer (workspace based) diff --git a/sources/storage/pom.xml b/sources/storage/pom.xml index e340fc5382d..51909274f86 100644 --- a/sources/storage/pom.xml +++ b/sources/storage/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 storage diff --git a/sources/storage/storage-access-log-backup/pom.xml b/sources/storage/storage-access-log-backup/pom.xml index 523c745af75..f3f89c49783 100644 --- a/sources/storage/storage-access-log-backup/pom.xml +++ b/sources/storage/storage-access-log-backup/pom.xml @@ -6,7 +6,7 @@ fr.gouv.vitam storage - 4.0.1-SNAPSHOT + 4.0.0 storage-access-log-backup diff --git a/sources/storage/storage-driver-api/pom.xml b/sources/storage/storage-driver-api/pom.xml index 5d240339c1b..27dacb654ee 100644 --- a/sources/storage/storage-driver-api/pom.xml +++ b/sources/storage/storage-driver-api/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam storage - 4.0.1-SNAPSHOT + 4.0.0 storage-driver-api Storage Driver API diff --git a/sources/storage/storage-engine/pom.xml b/sources/storage/storage-engine/pom.xml index e4ac38bba58..7a10ea8be7d 100644 --- a/sources/storage/storage-engine/pom.xml +++ b/sources/storage/storage-engine/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam storage - 4.0.1-SNAPSHOT + 4.0.0 storage-engine diff --git a/sources/storage/storage-engine/storage-engine-client/pom.xml b/sources/storage/storage-engine/storage-engine-client/pom.xml index 2068c41182f..736c5dd2114 100644 --- a/sources/storage/storage-engine/storage-engine-client/pom.xml +++ b/sources/storage/storage-engine/storage-engine-client/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam storage-engine - 4.0.1-SNAPSHOT + 4.0.0 storage-engine-client Storage Engine Client diff --git a/sources/storage/storage-engine/storage-engine-common/pom.xml b/sources/storage/storage-engine/storage-engine-common/pom.xml index 4280477b3bf..e62fc94c5fe 100644 --- a/sources/storage/storage-engine/storage-engine-common/pom.xml +++ b/sources/storage/storage-engine/storage-engine-common/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam storage-engine - 4.0.1-SNAPSHOT + 4.0.0 storage-engine-common Storage Engine Common diff --git a/sources/storage/storage-engine/storage-engine-server/pom.xml b/sources/storage/storage-engine/storage-engine-server/pom.xml index da251765d10..265be137016 100644 --- a/sources/storage/storage-engine/storage-engine-server/pom.xml +++ b/sources/storage/storage-engine/storage-engine-server/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam storage-engine - 4.0.1-SNAPSHOT + 4.0.0 storage-engine-server Storage Engine Server diff --git a/sources/storage/storage-log-backup/pom.xml b/sources/storage/storage-log-backup/pom.xml index ec2b9bfb330..8058b35e08c 100644 --- a/sources/storage/storage-log-backup/pom.xml +++ b/sources/storage/storage-log-backup/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam storage - 4.0.1-SNAPSHOT + 4.0.0 storage-log-backup diff --git a/sources/storage/storage-log-traceability/pom.xml b/sources/storage/storage-log-traceability/pom.xml index e2d760e33c8..fba61cbda56 100644 --- a/sources/storage/storage-log-traceability/pom.xml +++ b/sources/storage/storage-log-traceability/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam storage - 4.0.1-SNAPSHOT + 4.0.0 storage-log-traceability diff --git a/sources/technical-administration/pom.xml b/sources/technical-administration/pom.xml index 0954e9194e4..13e9c822685 100644 --- a/sources/technical-administration/pom.xml +++ b/sources/technical-administration/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 technical-administration diff --git a/sources/worker/pom.xml b/sources/worker/pom.xml index fcdee045e64..0c1e6b369cd 100644 --- a/sources/worker/pom.xml +++ b/sources/worker/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 worker pom diff --git a/sources/worker/worker-client/pom.xml b/sources/worker/worker-client/pom.xml index 940289e9487..1b6a0f7c8e0 100644 --- a/sources/worker/worker-client/pom.xml +++ b/sources/worker/worker-client/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam worker - 4.0.1-SNAPSHOT + 4.0.0 worker-client Worker Client diff --git a/sources/worker/worker-common/pom.xml b/sources/worker/worker-common/pom.xml index 0efe52b26f9..662d2867170 100644 --- a/sources/worker/worker-common/pom.xml +++ b/sources/worker/worker-common/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam worker - 4.0.1-SNAPSHOT + 4.0.0 worker-common Worker Common diff --git a/sources/worker/worker-core/pom.xml b/sources/worker/worker-core/pom.xml index 9784671b26b..c0948cca896 100755 --- a/sources/worker/worker-core/pom.xml +++ b/sources/worker/worker-core/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam worker - 4.0.1-SNAPSHOT + 4.0.0 worker-core Worker Core diff --git a/sources/worker/worker-server/pom.xml b/sources/worker/worker-server/pom.xml index dd2cf1aa5bd..f33f78dea9e 100644 --- a/sources/worker/worker-server/pom.xml +++ b/sources/worker/worker-server/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam worker - 4.0.1-SNAPSHOT + 4.0.0 worker-server Worker Server diff --git a/sources/workspace/pom.xml b/sources/workspace/pom.xml index a22fc8bc57c..e6cba6eb9a6 100644 --- a/sources/workspace/pom.xml +++ b/sources/workspace/pom.xml @@ -5,7 +5,7 @@ fr.gouv.vitam parent - 4.0.1-SNAPSHOT + 4.0.0 workspace diff --git a/sources/workspace/workspace-api/pom.xml b/sources/workspace/workspace-api/pom.xml index ec3041549ad..706391d9ef6 100644 --- a/sources/workspace/workspace-api/pom.xml +++ b/sources/workspace/workspace-api/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam workspace - 4.0.1-SNAPSHOT + 4.0.0 workspace-api diff --git a/sources/workspace/workspace-client/pom.xml b/sources/workspace/workspace-client/pom.xml index c7417862133..8a8c27f13e0 100644 --- a/sources/workspace/workspace-client/pom.xml +++ b/sources/workspace/workspace-client/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam workspace - 4.0.1-SNAPSHOT + 4.0.0 workspace-client Workspace Client diff --git a/sources/workspace/workspace-common/pom.xml b/sources/workspace/workspace-common/pom.xml index b4437c7bb7b..e58d47b96cf 100644 --- a/sources/workspace/workspace-common/pom.xml +++ b/sources/workspace/workspace-common/pom.xml @@ -4,7 +4,7 @@ fr.gouv.vitam workspace - 4.0.1-SNAPSHOT + 4.0.0 workspace-common Workspace Common diff --git a/sources/workspace/workspace-rest/pom.xml b/sources/workspace/workspace-rest/pom.xml index b715412940c..d68bd0111a3 100644 --- a/sources/workspace/workspace-rest/pom.xml +++ b/sources/workspace/workspace-rest/pom.xml @@ -3,7 +3,7 @@ fr.gouv.vitam workspace - 4.0.1-SNAPSHOT + 4.0.0 workspace-rest workspace Rest