Hi,
I changed the example pipeline script a bit to test if it would work using 
Subversion. The repository that I want to use does not allow anonymous 
access. Is it possible to add credentials?
Cheers,
Onno

node {
   // Mark the code checkout 'stage'....
   stage 'Checkout'

   // Get some code from a GitHub repository
   svn url: 'https://mysvnurl

   // Get the maven tool.
   // ** NOTE: This 'M3' maven tool must be configured
   // **       in the global configuration.           
   def mvnHome = tool 'Maven 3.2.5'

   // Mark the code build 'stage'....
   stage 'Build'
   // Run the maven build
   sh "${mvnHome}/bin/mvn clean install"
}

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/b94d739a-7344-4739-aed2-87c86e31036c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to