https://github.com/ansforge/psc-extract
module de génération de l'extract RASS enrichi
https://github.com/ansforge/psc-extract
sec-psc
Last synced: 10 months ago
JSON representation
module de génération de l'extract RASS enrichi
- Host: GitHub
- URL: https://github.com/ansforge/psc-extract
- Owner: ansforge
- License: apache-2.0
- Created: 2023-09-12T08:06:54.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-26T10:25:45.000Z (over 1 year ago)
- Last Synced: 2025-02-28T21:11:07.119Z (over 1 year ago)
- Topics: sec-psc
- Language: Java
- Homepage:
- Size: 476 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# pscextract
extract mongodb collection into file, is also a webserver that exposes the file for download
## Developement
### Distribution history
This ecosystem uses many independant components, some of which live an independant life in distinct repositories.
For each release of `psc-extrract`, [the psc-components' distribution history](https://github.com/ansforge/psc-components/blob/main/DISTRIBUTION.md)
file will need to be updated with the new version, so that we can keep track of compatible component versions,
and go back to a previous working distribution if need be.
### Release procedure
Whenever a version is ready for release, run the following commands on the `main` branch (or on the maintenance branch if we're about to issue a production FIX). This should run on any shell, be it `bash`, `cmd` or if needed `gitbash`.
```bash
mvn release:prepare -DautoVersionSubmodules=true -DtagNameFormat=@{version}
git push
git push origin
```
where `` stands for the new version.
Eg to relase `1.0.2` :
```bash
mvn release:prepare -DautoVersionSubmodules=true -DtagNameFormat=@{version}
git push
git push origin 0.0.2
```