X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=Jenkinsfile;fp=Jenkinsfile;h=0000000000000000000000000000000000000000;hb=ee6b47caf5bff344baf3a0616ef3e32c93ba9da3;hp=a8161fc79c63f1fd7cd8ed282436ef726f0c2b27;hpb=da6d6f73a66a98ca9b666d0418c6914252d85dba;p=dmaap%2Fdatarouter.git diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index a8161fc7..00000000 --- a/Jenkinsfile +++ /dev/null @@ -1,24 +0,0 @@ -node { - // Get the maven tool. - // ** NOTE: This 'M3' maven tool must be configured - // ** in the Jenkins global configuration. - def mvnHome = tool 'M3' - sh "echo ${mvnHome}" - - - // Mark the code checkout 'stage'.... - stage 'Checkout' - // Get some code from a GitHub repository - checkout scm - - // Mark the code build 'stage'.... - stage 'Build DMAAP-DR' - // Run the maven build - //sh for unix bat for windows - - sh "${mvnHome}/bin/mvn -f datarouter-prov/pom.xml clean deploy" - sh "${mvnHome}/bin/mvn -f datarouter-node/pom.xml clean deploy" - - - -}