|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 | <groupId>clj-ssh</groupId>
|
5 | 5 | <artifactId>clj-ssh</artifactId>
|
6 |
| - <version>0.2.4-SNAPSHOT</version> |
| 6 | + <version>0.3.0-SNAPSHOT</version> |
7 | 7 | <name>clj-ssh</name>
|
8 | 8 | <description>ssh from clojure</description>
|
9 | 9 | <scm>
|
|
33 | 33 | <testSourceDirectory>test</testSourceDirectory>
|
34 | 34 | </testSourceDirectories>
|
35 | 35 | <clojureOptions>-Xmx512m -Djava.awt.headless=true -XX:MaxPermSize=256m</clojureOptions>
|
36 |
| - <warnOnReflection>true</warnOnReflection> |
| 36 | + <warnOnReflection>false</warnOnReflection> |
37 | 37 | <compileDeclaredNamespaceOnly>true</compileDeclaredNamespaceOnly>
|
38 | 38 | <temporaryOutputDirectory>true</temporaryOutputDirectory>
|
39 | 39 | </configuration>
|
|
90 | 90 | <dependency>
|
91 | 91 | <groupId>org.clojure</groupId>
|
92 | 92 | <artifactId>clojure</artifactId>
|
93 |
| - <version>1.1.0</version> |
| 93 | + <version>1.2.0</version> |
94 | 94 | </dependency>
|
95 | 95 | <dependency>
|
96 | 96 | <groupId>org.clojure</groupId>
|
97 | 97 | <artifactId>clojure-contrib</artifactId>
|
98 |
| - <version>1.1.0</version> |
| 98 | + <version>1.2.0</version> |
99 | 99 | </dependency>
|
100 | 100 | <dependency>
|
101 | 101 | <groupId>com.jcraft</groupId>
|
102 | 102 | <artifactId>jsch</artifactId>
|
103 | 103 | <version>0.1.44-1</version>
|
104 | 104 | </dependency>
|
| 105 | + <dependency> |
| 106 | + <groupId>log4j</groupId> |
| 107 | + <artifactId>log4j</artifactId> |
| 108 | + <version>1.2.14</version> |
| 109 | + <optional>true</optional> |
| 110 | + <scope>test</scope> |
| 111 | + </dependency> |
105 | 112 | <dependency>
|
106 | 113 | <groupId>swank-clojure</groupId>
|
107 | 114 | <artifactId>swank-clojure</artifactId>
|
108 | 115 | <version>1.2.1</version>
|
109 | 116 | <optional>true</optional>
|
| 117 | + <scope>test</scope> |
110 | 118 | </dependency>
|
111 | 119 | </dependencies>
|
112 | 120 | <profiles>
|
113 |
| - <profile> |
114 |
| - <id>clojure-1.2</id> |
115 |
| - <dependencies> |
116 |
| - <dependency> |
117 |
| - <groupId>org.clojure</groupId> |
118 |
| - <artifactId>clojure</artifactId> |
119 |
| - <version>1.2.0</version> |
120 |
| - </dependency> |
121 |
| - <dependency> |
122 |
| - <groupId>org.clojure</groupId> |
123 |
| - <artifactId>clojure-contrib</artifactId> |
124 |
| - <version>1.2.0</version> |
125 |
| - </dependency> |
126 |
| - </dependencies> |
127 |
| - </profile> |
128 | 121 | <profile>
|
129 | 122 | <id>testuser</id>
|
130 | 123 | <build>
|
|
0 commit comments