Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

15 lignes
431B

  1. #!/bin/sh
  2. COCLI=docker # or podman
  3. $COCLI run --network=host -it --rm -v $(pwd)/../examples:/poms maven-sync-job
  4. cd ../data/repositories/releases/
  5. echo "Creating a tarball of the Releases"
  6. tar zcvf ../../maven-releases-packages.tar.gz * 2>/dev/null
  7. echo "Creating a tarball of the Snapshots"
  8. cd ../snapshots
  9. tar zcvf ../../maven-snapshots-packages.tar.gz * 2>/dev/null
  10. echo "NEXT: mirror *.tar.gz and import into Artifactory."