This is quite simple.
Most likely, you will be having a similar configuration to this defined in your authwl.conf
-file:
#!/usr/bin/env bash | |
# Triggers, verifies and downloads the User Guide from ITDoc | |
# Requires the following variables to be defined: | |
# jobUsername, jobPassword | |
# ^----- these relies on variable credentials being supplied by Jenkins variable (See "Bindings" => Username/Password) components | |
# | |
# @author vegaasen | |
# @since 13.12.2017 | |
# @version 13.12.2017@IAM-1231 |
Select the option in Artifactory as an administrator user. Choose to export everything with all options enabled. Choose somewhere on the server to store the files and copy these to a required location.
In order to import stuff in to Nexus, trigger the following commmand from the base-folder where the files were exported to (e.g .m2/*).
#!/bin/bash | |
# | |
# @description This script will simply just archive files which is of age month-1->n. | |
# @author vegaasen | |
# @since 16.12.2014 | |
# | |
# Configuration | |
ARCHIVE_FOLDER_ID='logs-archive'; |
This is not ment to be a complete guide on how to actually convert your application from Junit 4 to Junit 5.
This is just my own findings and ramblings, and the list is by far complete. Despite that; I hope that it may help on the way to converting your Junit 4 application to a Junit 5 application.