diff options
author | sg481n <sg481n@att.com> | 2017-10-10 21:56:53 +0000 |
---|---|---|
committer | sg481n <sg481n@att.com> | 2017-10-10 21:56:58 +0000 |
commit | ee6b47caf5bff344baf3a0616ef3e32c93ba9da3 (patch) | |
tree | 2b11dcf59513c2342f54c5df3874c085766b0910 /Jenkinsfile | |
parent | da6d6f73a66a98ca9b666d0418c6914252d85dba (diff) |
Fix license issues in dmaap dr
Issue-ID: DMAAP-163
Change-Id: I035ecf8a856fdf03d5469952e0ea9fe9f6ee357a
Signed-off-by: sg481n <sg481n@att.com>
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 24 |
1 files changed, 0 insertions, 24 deletions
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"
-
-
-
-}
|