Skip to content

Commit d476d01

Browse files
committed
Merge branch 'release/0.2.1'
2 parents e1bcf0b + 7d57f97 commit d476d01

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>clj-ssh</groupId>
55
<artifactId>clj-ssh</artifactId>
6-
<version>0.2.1-SNAPSHOT</version>
6+
<version>0.2.2-SNAPSHOT</version>
77
<name>clj-ssh</name>
88
<description>ssh from clojure</description>
99
<scm>
@@ -24,7 +24,7 @@
2424
<plugin>
2525
<groupId>com.theoryinpractise</groupId>
2626
<artifactId>clojure-maven-plugin</artifactId>
27-
<version>1.3.2</version>
27+
<version>1.3.7</version>
2828
<configuration>
2929
<sourceDirectories>
3030
<sourceDirectory>src</sourceDirectory>
@@ -35,8 +35,7 @@
3535
<clojureOptions>-Xmx512m -Djava.awt.headless=true -XX:MaxPermSize=256m</clojureOptions>
3636
<warnOnReflection>true</warnOnReflection>
3737
<compileDeclaredNamespaceOnly>true</compileDeclaredNamespaceOnly>
38-
<!-- we want the AOT compile sanity check, but still only ship source -->
39-
<outputDirectory>${project.build.directory}/clojure-classes</outputDirectory>
38+
<temporaryOutputDirectory>true</temporaryOutputDirectory>
4039
</configuration>
4140
<executions>
4241
<execution>
@@ -57,6 +56,7 @@
5756
</plugin>
5857
<plugin>
5958
<artifactId>maven-jar-plugin</artifactId>
59+
<version>2.3.1</version>
6060
<configuration>
6161
<excludes>
6262
<exclude>log4j.xml</exclude>
@@ -130,7 +130,7 @@
130130
<plugin>
131131
<groupId>com.theoryinpractise</groupId>
132132
<artifactId>clojure-maven-plugin</artifactId>
133-
<version>1.3.2</version>
133+
<version>1.3.7</version>
134134
<configuration>
135135
<clojureOptions>-Xmx512m -Djava.awt.headless=true -XX:MaxPermSize=256m -Dssh.username=testuser</clojureOptions>
136136
</configuration>

src/clj_ssh/ssh.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ Options are
494494
:lpwd (.lpwd channel)
495495
:rm (.rm channel (first args))
496496
:rmdir (.rmdir channel (first args))
497-
:rmdir (.mkdir channel (first args))
497+
:mkdir (.mkdir channel (first args))
498498
:stat (.stat channel (first args))
499499
:lstat (.lstat channel (first args))
500500
:rename (.rename channel (first args) (second args))

0 commit comments

Comments
 (0)