Skip to content

Instantly share code, notes, and snippets.

View birolemekli's full-sized avatar
🎯
Focusing

Birol EMEKLİ birolemekli

🎯
Focusing
View GitHub Profile
@birolemekli
birolemekli / movedNexusRepo.py
Last active January 22, 2025 14:52
Move a repository to different server in Nexus Repository with Python and Nexus Repository Api
import requests, os, time
currentNexus="https://nexus"
anothernexus="https://anotherNexus"
repositoryName="repositoryName"
url=f"{currentNexus}/service/rest/v1/components?repository={repositoryName}"
start_time=time.time()
nextToken="firstStart"
@birolemekli
birolemekli / jenkins_job_trigger.sh
Created May 16, 2022 08:32
How to trigger Jenkins Job with Bash Script
#!/bin/bash
JENKINS_URL="http://jenkins"
JENKINS_USER="username"
JENKINS_TOKEN="username_generate_token"
JOB_NAME="job/birolTestJob"
JENKINS_AUTH="$JENKINS_USER:$JENKINS_TOKEN"