-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ”cac:DocumentReference” to Certificate in Peppol PunchOut.
- Loading branch information
Hans Petersen
committed
Aug 31, 2024
1 parent
21c0a1c
commit 40886c8
Showing
4 changed files
with
185 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
@echo off | ||
setlocal | ||
|
||
:: Get the directory of the script | ||
set "PROJECT=%~dp0" | ||
set "PROJECT=%PROJECT:~0,-1%" :: Remove trailing backslash if any | ||
|
||
:: Delete target folder if found | ||
if exist "%PROJECT%\target" ( | ||
docker run --rm -i -v "%PROJECT%:/src" alpine:3.6 rm -rf /src/target | ||
) | ||
|
||
:: Structure | ||
docker run --rm -i -v "%PROJECT%:/src" -v "%PROJECT%\target:/target" difi/vefa-structure:0.6.1 | ||
|
||
:: Testing validation rules | ||
docker run --rm -i -v "%PROJECT%:/src" anskaffelser/validator:2.1.0 build -x -t -n eu.peppol.poacc.upgrade.v3 -a rules -target target/validator-test /src | ||
|
||
:: Schematron | ||
for %%s in ("%PROJECT%\rules\sch\*.sch") do ( | ||
docker run --rm -i -v "%PROJECT%:/src" -v "%PROJECT%\target\schematron:/target" klakegg/schematron prepare /src/rules/sch/%%~nxs /target/%%~nxs | ||
) | ||
|
||
docker run --rm -i -v "%PROJECT%\target\site\files:/src" alpine:3.6 rm -rf /src/PEPPOLBIS-Upgrade-Schematron.zip | ||
docker run --rm -i -v "%PROJECT%\target\schematron:/src" -v "%PROJECT%\target\site\files:/target" -w /src kramos/alpine-zip -r /target/PEPPOLBIS-Upgrade-Schematron.zip . | ||
|
||
:: Example files | ||
docker run --rm -i -v "%PROJECT%\target\site\files:/src" alpine:3.6 rm -rf /src/PEPPOLBIS-Examples.zip | ||
docker run --rm -i -v "%PROJECT%\rules\examples:/src" -v "%PROJECT%\target\site\files:/target" -w /src kramos/alpine-zip -r /target/PEPPOLBIS-Examples.zip . | ||
|
||
:: Guides | ||
docker run --rm -i -v "%PROJECT%:/documents" -v "%PROJECT%\target:/target" difi/asciidoctor | ||
|
||
:: Fix ownership (Windows doesn't use the same concept of user/group ownership, so this part is usually not necessary) | ||
:: You can skip this part or just leave it for Unix-like environments using Docker. | ||
|
||
endlocal | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.