Found 3 repositories(showing 3)
matburt
Claude Code skill plugin for managing the Nexus multi-repo dev environment
shad1k2
My enivrovement with codespaces for coding in nim and using Github Actions servers
Ashokrepala
pipeline { agent any tools { maven 'Maven3' } stages { stage ('Build') { steps { sh 'mvn clean install -f MyWebApp/pom.xml' } } stage ('Code Quality') { steps { withSonarQubeEnv('SonarQube') { sh 'mvn -f MyWebApp/pom.xml sonar:sonar' } } } stage ('JaCoCo') { steps { jacoco() } } stage ('Nexus Upload') { steps { nexusArtifactUploader( nexusVersion: 'nexus3', protocol: 'http', nexusUrl: 'nexus_url:8081', groupId: 'myGroupId', version: '1.0-SNAPSHOT', repository: 'maven-snapshots', credentialsId: 'fc0f1694-3036-41fe-b3e3-4c5d96fcfd26', artifacts: [ [artifactId: 'MyWebApp', classifier: '', file: 'MyWebApp/target/MyWebApp.war', type: 'war'] ]) } } stage ('DEV Deploy') { steps { echo "deploying to DEV Env " deploy adapters: [tomcat9(credentialsId: '268c42f6-f2f5-488f-b2aa-f2374d229b2e', path: '', url: 'http://your_public_dns:8080')], contextPath: null, war: '**/*.war' } } stage ('Slack Notification') { steps { echo "deployed to DEV Env successfully" slackSend(channel:'your slack channel_name', message: "Job is successful, here is the info - Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})") } }
All 3 repositories loaded