diff --git a/DSL/nodejsDSL.groovy b/DSL/nodejsDSL.groovy index 740ee73..e401665 100644 --- a/DSL/nodejsDSL.groovy +++ b/DSL/nodejsDSL.groovy @@ -2,8 +2,8 @@ job('Aplicacion Node.js DSL') { description('Aplicación Node JS DSL para el curso de Jenkins') scm { git('https://github.com/macloujulian/nodejsapp.git', 'master') { node -> - node / gitConfigName('macloujulian') - node / gitConfigEmail('macloujulian@gmail.com') + node / gitConfigName('kellystephany24') + node / gitConfigEmail('kellystephany24@yahoo.com') } } triggers { @@ -15,23 +15,4 @@ job('Aplicacion Node.js DSL') { steps { shell("npm install") } - publishers { - slackNotifier { - notifyAborted(true) - notifyEveryFailure(true) - notifyNotBuilt(false) - notifyUnstable(false) - notifyBackToNormal(true) - notifySuccess(true) - notifyRepeatedFailure(false) - startNotification(false) - includeTestSummary(false) - includeCustomMessage(false) - customMessage(null) - sendAs(null) - commitInfoChoice('NONE') - teamDomain(null) - authToken(null) - } - } }