diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6f2455c --- /dev/null +++ b/.gitignore @@ -0,0 +1,79 @@ +### Intellij ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +### Intellij Patch ### +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 + +# *.iml +# modules.xml +# .idea/misc.xml +# *.ipr + +# Sonarlint plugin +.idea/sonarlint + +### Maven ### +target/ +pom.xml.tag +pom.xml.releaseBackup +pom.xml.versionsBackup +pom.xml.next +release.properties +dependency-reduced-pom.xml +buildNumber.properties +.mvn/timing.properties +.mvn/wrapper/maven-wrapper.jar +\.idea/ + +*.iml diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..fe61507 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Tools + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/SSHPrintCLI/pom.xml b/SSHPrintCLI/pom.xml new file mode 100644 index 0000000..33ad3ab --- /dev/null +++ b/SSHPrintCLI/pom.xml @@ -0,0 +1,15 @@ + + + + SSHPrint + org.lalber.tools + 1.0-SNAPSHOT + + 4.0.0 + + SSHPrintCLI + + + \ No newline at end of file diff --git a/SSHPrintGUI/pom.xml b/SSHPrintGUI/pom.xml new file mode 100644 index 0000000..bd3b139 --- /dev/null +++ b/SSHPrintGUI/pom.xml @@ -0,0 +1,15 @@ + + + + SSHPrint + org.lalber.tools + 1.0-SNAPSHOT + + 4.0.0 + + SSHPrintGUI + + + \ No newline at end of file diff --git a/SSHPrintService/pom.xml b/SSHPrintService/pom.xml new file mode 100644 index 0000000..df58d58 --- /dev/null +++ b/SSHPrintService/pom.xml @@ -0,0 +1,27 @@ + + + + SSHPrint + org.lalber.tools + 1.0-SNAPSHOT + + 4.0.0 + + SSHPrintService + + + com.jcraft + jsch + 0.1.54 + + + log4j + log4j + 1.2.17 + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..73d05cf --- /dev/null +++ b/pom.xml @@ -0,0 +1,18 @@ + + + 4.0.0 + + org.lalber.tools + SSHPrint + pom + 1.0-SNAPSHOT + + SSHPrintService + SSHPrintCLI + SSHPrintGUI + + + + \ No newline at end of file