Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gabrielf/maven-samples
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: apenev/maven-samples
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 9 commits
  • 2 files changed
  • 1 contributor

Commits on Jun 17, 2023

  1. Create Jenkinsfile

    git checkout -b AD-11-find-loki
    apenev authored Jun 17, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    95d2802 View commit details
  2. Update README

    AD-11 find Loki
    apenev authored Jun 17, 2023
    Copy the full SHA
    43fd400 View commit details
  3. Merge pull request #1 from apenev/apenev-patch-1

    Update README
    apenev authored Jun 17, 2023
    Copy the full SHA
    eceb20a View commit details
  4. AD-11 find loki

    apenev authored Jun 17, 2023
    Copy the full SHA
    0b6952a View commit details
  5. AD-11-test the integration

    apenev authored Jun 17, 2023
    Copy the full SHA
    97883f8 View commit details
  6. AD-11 try to deploy

    apenev authored Jun 17, 2023
    Copy the full SHA
    c4f94ad View commit details
  7. Merge pull request #2 from apenev/AD-11-find-loki

    AD-11 find loki try to deploy to production
    apenev authored Jun 17, 2023
    Copy the full SHA
    237d7b3 View commit details

Commits on Jun 21, 2023

  1. Update README

    apenev authored Jun 21, 2023
    Copy the full SHA
    7a8cca2 View commit details
  2. AD-11 Update README

    apenev authored Jun 21, 2023
    Copy the full SHA
    76e0b61 View commit details
Showing with 47 additions and 0 deletions.
  1. +41 −0 Jenkinsfile
  2. +6 −0 README
41 changes: 41 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building...'
}
post {
always {
jiraSendBuildInfo site: 'bytesource.atlassian.net'
}
}
}
stage('Deploy - Staging') {
when {
branch 'master'
}
steps {
echo 'Deploying to Staging from master...'
}
post {
always {
jiraSendDeploymentInfo environmentId: 'us-stg-1', environmentName: 'us-stg-1', environmentType: 'staging'
}
}
}
stage('Deploy - Production') {
when {
branch 'master'
}
steps {
echo 'Deploying to Production from master...'
}
post {
always {
jiraSendDeploymentInfo environmentId: 'us-prod-1', environmentName: 'us-prod-1', environmentType: 'production'
}
}
}
}
}
6 changes: 6 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -2,3 +2,9 @@ Simple Maven Projects for testing
---------------------

This repository contains two small Maven projects intended as examples of how a Maven projects can be setup. They were created to be used in a presentation about Maven.


----------------------
Will use this as an example of deployments for JIRA Integration
Test the integration#
new deployment