eIDAS DSS Lib
Reference Material
Install Code
// Min Java 16, MVN 3.6
$ java -version
$ mvn -v
// output and error and piped to file
$ sudo mvn clean install 2>&1 | tee install_Dss_Log01.txt
// There are some tests that can take a long time and cause timeout
// You need to restart the setup from where you stop last time
$ sudo mvn -rf lastModuleNameThatFail clean install
// for my issue (timeout on dss-spi test), it has solved the issue
$ sudo mvn install -rf :dss-spiDemonstrator
Last updated