File tree Expand file tree Collapse file tree 3 files changed +40
-11
lines changed Expand file tree Collapse file tree 3 files changed +40
-11
lines changed Original file line number Diff line number Diff line change @@ -68,9 +68,13 @@ A: Probably a disk full, or permission error.
68
68
69
69
## Installation
70
70
71
- Via maven and the [ clojars] ( http://clojars.org ) , or
71
+ Via [ clojars] ( http://clojars.org ) and
72
72
[ Leiningen] ( http://github.com/technomancy/leiningen ) .
73
73
74
+ :dependencies [clj-ssh "0.3.0"]
75
+
76
+ or your favourite maven repository aware tool.
77
+
74
78
## License
75
79
76
80
Licensed under [ EPL] ( http://www.eclipse.org/legal/epl-v10.html )
Original file line number Diff line number Diff line change
1
+ # Release Notes
2
+
3
+ Current release is 0.3.0
4
+
5
+ ## 0.3.0
6
+
7
+ * Changes
8
+
9
+ - Remove use of monolithic contrib
10
+ In preparation for clojure 1.3. Use slingshot instead of
11
+ contrib.condition. Use local copy of contrib.reflect.
12
+
13
+ - Switch to tools.logging
14
+
15
+ - Allow specification of PipedInputStream buffer size
16
+ The buffer size (in bytes) for the piped stream used to implement the
17
+ : stream option for : out . If the ssh commands generate a high volume of
18
+ output, then this buffer size can become a bottleneck. The buffer size
19
+ can be specified by binding * piped-stream-buffer-size* , and defaults to
20
+ 10Kb.
21
+
22
+ - Add scp-from and scp-to, for copy files over ssh-exec
23
+ Add support for scp using ssh-exec. copies files from a remote machine.
24
+ copies to a remote machine.
25
+
26
+ - Drop clojure 1.1.0 support
Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
<groupId >clj-ssh</groupId >
5
5
<artifactId >clj-ssh</artifactId >
6
- <version >0.3.0-SNAPSHOT </version >
6
+ <version >0.3.0</version >
7
7
<name >clj-ssh</name >
8
- <description >ssh from clojure</description >
8
+ <description >
9
+ clj-ssh is a clojure wrapper for he jsch library, and can be used as an
10
+ ssh client
11
+ </description >
12
+
9
13
<scm >
10
14
<connection >scm:git:git://github.com/hugoduncan/clj-ssh.git</connection >
11
15
<
developerConnection >scm:git:ssh://
[email protected] /hugoduncan/clj-ssh.git</
developerConnection >
12
16
<tag >380240ba9bf67fffe69bebdc9aaef711e819063d</tag >
13
17
<url >http://github.com/hugoduncan/clj-ssh</url >
14
18
</scm >
19
+
15
20
<build >
16
21
<sourceDirectory >src</sourceDirectory >
17
22
<testSourceDirectory >test</testSourceDirectory >
72
77
</plugin >
73
78
</plugins >
74
79
</build >
80
+
75
81
<repositories >
76
- <repository >
77
- <id >clojure</id >
78
- <url >http://build.clojure.org/releases</url >
79
- </repository >
80
- <repository >
81
- <id >clojure-snapshots</id >
82
- <url >http://build.clojure.org/snapshots</url >
83
- </repository >
84
82
<repository >
85
83
<id >clojars</id >
86
84
<url >http://clojars.org/repo/</url >
87
85
</repository >
88
86
</repositories >
87
+
89
88
<dependencies >
90
89
<dependency >
91
90
<groupId >org.clojure</groupId >
You can’t perform that action at this time.
0 commit comments