Skip to content

Commit

Permalink
Initial version of SSH Steps
Browse files Browse the repository at this point in the history
- sshExecuteCommand
- sshExecuteScript
- sshGet
- sshPut
- sshRemove
  • Loading branch information
nrayapati committed Jun 22, 2018
1 parent 4f570ff commit 5ab18d1
Show file tree
Hide file tree
Showing 35 changed files with 2,667 additions and 23 deletions.
47 changes: 26 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
/target
/lib
/classes
/checkouts
/bin
pom.xml.asc
*.jar
*.war
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
*.class
*.iml
.idea
**/target
**/checkouts
*.*~
*.project
*.settings
*.classpath
.DS_Store
_site/
.sass-cache/
.jekyll-metadata
_pdf
/.gradle/
*.DS_Store
.project
*.settings
*.bak
public/
10 changes: 10 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
= Release Notes.

== 1.0.0 (Unreleased)
* Initial release.
* Supported Steps.
** sshExecuteCommand
** sshExecuteScript
** sshGet
** sshPut
** sshRemove
35 changes: 35 additions & 0 deletions CONTRIBUTING.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
= Contributing
:1: https://issues.jenkins-ci.org/secure/Dashboard.jspan/issues
:2: http://gun.io/blog/how-to-github-fork-branch-and-pull-request
:3: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
:4: ./CHANGELOG.adoc
:5: http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html
:6: https://help.github.com/articles/using-pull-requests

Help us to make this project better by contributing. Whether it's new features, bug fixes, or simply improving documentation, your contributions are welcome. Please start with logging a {1}[Github Issue] or submit a pull request.

Before you contribute, please review these guidelines to help ensure a smooth process for everyone.

== Issue reporting

* Please browse the {1}[issues] before logging new JIRA.
* Check that the issue has not already been fixed in the `master` branch.
* Create JIRA with a descriptive title and a summary.
* Please be as clear and explicit as you can in your description of the problem.
* Please state the version of the plugin you are using in the description.
* Include any relevant code in the issue summary.

== Pull requests

* Read {2}[how to properly contribute to open source projects on Github].
* Fork the project.
* Use a feature branch.
* Write {3}[good commit messages].
* Use the same coding conventions as the rest of the project. This project is using Google https://google.github.io/styleguide/javaguide.html[StyleGuide]
** Download StyleGuides from https://github.com/google/styleguide[Github].
* Commit locally and push to your fork until you are happy with your contribution.
* Make sure to add tests and verify all the tests are passing when merging upstream.
* Add an entry to the link:{4}[Changelog] accordingly.
* {5}[Squash related commits together].
* Open a {6}[pull request].
* The pull request will be reviewed by the community and merged by the project committers.
5 changes: 5 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env groovy

/* `buildPlugin` step provided by: https://github.com/jenkins-infra/pipeline-library */

buildPlugin(platforms: ['linux'])
13 changes: 13 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright 2018-2019 Cerner Corporation.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Loading

0 comments on commit 5ab18d1

Please sign in to comment.