Skip to content

Commit c2ba87d

Browse files
committed
Update pom and project to 0.3.2-SNAPSHOT
1 parent d417152 commit c2ba87d

File tree

2 files changed

+44
-44
lines changed

2 files changed

+44
-44
lines changed

pom.xml

Lines changed: 43 additions & 43 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.3.1</version>
6+
<version>0.3.2-SNAPSHOT</version>
77
<name>clj-ssh</name>
88
<description>
99
clj-ssh is a clojure wrapper for he jsch library, and can be used as an
@@ -22,42 +22,42 @@
2222
<testSourceDirectory>test</testSourceDirectory>
2323
<resources>
2424
<resource>
25-
<directory>src</directory>
25+
<directory>src</directory>
2626
</resource>
2727
</resources>
2828
<plugins>
2929
<plugin>
30-
<groupId>com.theoryinpractise</groupId>
31-
<artifactId>clojure-maven-plugin</artifactId>
32-
<version>1.3.7</version>
33-
<configuration>
34-
<sourceDirectories>
35-
<sourceDirectory>src</sourceDirectory>
36-
</sourceDirectories>
37-
<testSourceDirectories>
38-
<testSourceDirectory>test</testSourceDirectory>
39-
</testSourceDirectories>
40-
<clojureOptions>-Xmx512m -Djava.awt.headless=true -XX:MaxPermSize=256m</clojureOptions>
41-
<warnOnReflection>false</warnOnReflection>
30+
<groupId>com.theoryinpractise</groupId>
31+
<artifactId>clojure-maven-plugin</artifactId>
32+
<version>1.3.7</version>
33+
<configuration>
34+
<sourceDirectories>
35+
<sourceDirectory>src</sourceDirectory>
36+
</sourceDirectories>
37+
<testSourceDirectories>
38+
<testSourceDirectory>test</testSourceDirectory>
39+
</testSourceDirectories>
40+
<clojureOptions>-Xmx512m -Djava.awt.headless=true -XX:MaxPermSize=256m</clojureOptions>
41+
<warnOnReflection>false</warnOnReflection>
4242
<compileDeclaredNamespaceOnly>true</compileDeclaredNamespaceOnly>
4343
<temporaryOutputDirectory>true</temporaryOutputDirectory>
44-
</configuration>
45-
<executions>
46-
<execution>
47-
<id>compile-clojure</id>
48-
<phase>compile</phase>
49-
<goals>
50-
<goal>compile</goal>
51-
</goals>
52-
</execution>
53-
<execution>
54-
<id>test-clojure</id>
55-
<phase>test</phase>
56-
<goals>
57-
<goal>test</goal>
58-
</goals>
59-
</execution>
60-
</executions>
44+
</configuration>
45+
<executions>
46+
<execution>
47+
<id>compile-clojure</id>
48+
<phase>compile</phase>
49+
<goals>
50+
<goal>compile</goal>
51+
</goals>
52+
</execution>
53+
<execution>
54+
<id>test-clojure</id>
55+
<phase>test</phase>
56+
<goals>
57+
<goal>test</goal>
58+
</goals>
59+
</execution>
60+
</executions>
6161
</plugin>
6262
<plugin>
6363
<artifactId>maven-jar-plugin</artifactId>
@@ -69,8 +69,8 @@
6969
</configuration>
7070
</plugin>
7171
<plugin>
72-
<artifactId>maven-release-plugin</artifactId>
73-
<version>2.0</version>
72+
<artifactId>maven-release-plugin</artifactId>
73+
<version>2.0</version>
7474
<configuration>
7575
<pushChanges>false</pushChanges>
7676
</configuration>
@@ -126,16 +126,16 @@
126126
<profile>
127127
<id>testuser</id>
128128
<build>
129-
<plugins>
130-
<plugin>
131-
<groupId>com.theoryinpractise</groupId>
132-
<artifactId>clojure-maven-plugin</artifactId>
133-
<version>1.3.7</version>
134-
<configuration>
135-
<clojureOptions>-Xmx512m -Djava.awt.headless=true -XX:MaxPermSize=256m -Dssh.username=testuser</clojureOptions>
136-
</configuration>
137-
</plugin>
138-
</plugins>
129+
<plugins>
130+
<plugin>
131+
<groupId>com.theoryinpractise</groupId>
132+
<artifactId>clojure-maven-plugin</artifactId>
133+
<version>1.3.7</version>
134+
<configuration>
135+
<clojureOptions>-Xmx512m -Djava.awt.headless=true -XX:MaxPermSize=256m -Dssh.username=testuser</clojureOptions>
136+
</configuration>
137+
</plugin>
138+
</plugins>
139139
</build>
140140
</profile>
141141
<profile>

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject clj-ssh "0.3.1"
1+
(defproject clj-ssh "0.3.2-SNAPSHOT"
22
:description "Library for using SSH from clojure."
33
:dependencies [[org.clojure/clojure "1.2.0"]
44
[org.clojure/tools.logging "0.1.2"]

0 commit comments

Comments
 (0)