Skip to content

Commit

Permalink
Bump to commons-io 2.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
candrews committed Sep 28, 2012
1 parent 1159238 commit c6f45b7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Maven users should add the library using the following dependency:

Non-Maven users should download the latest version and add it to the project's classpath. Also the following dependencies are required:

+ <a href="http://commons.apache.org/io/">Apache Commons IO 2.1</a>
+ <a href="http://commons.apache.org/io/">Apache Commons IO 2.4</a>
+ <a href="http://commons.apache.org/lang/">Apache Commons Lang 3.1</a>
+ <a href="http://commons.apache.org/logging/">Apache Commons Logging 1.1.1</a>
+ <a href="http://www.mozilla.org/rhino/">Rhino: JavaScript for Java 1.7R4</a>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.1</version>
<version>2.4</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
Expand Down Expand Up @@ -184,4 +184,4 @@
<url>http://github.com/marceloverdijk/lesscss-java</url>
</scm>

</project>
</project>
16 changes: 8 additions & 8 deletions src/test/java/org/lesscss/LessCompilerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ public void testCompileFileToFile() throws Exception {
verify(doIt).call(cx, scope, null, new Object[]{less, false});

verifyStatic();
FileUtils.writeStringToFile(outputFile, css, null);
FileUtils.writeStringToFile(outputFile, css, (String) null);
}

@Test
Expand All @@ -334,7 +334,7 @@ public void testCompileFileToFileWithForceTrue() throws Exception {
verify(doIt).call(cx, scope, null, new Object[]{less, false});

verifyStatic();
FileUtils.writeStringToFile(outputFile, css, null);
FileUtils.writeStringToFile(outputFile, css, (String) null);
}

@Test
Expand Down Expand Up @@ -364,7 +364,7 @@ public void testCompileFileToFileWithForceFalseAndOutputNotExists() throws Excep
verify(doIt).call(cx, scope, null, new Object[]{less, false});

verifyStatic();
FileUtils.writeStringToFile(outputFile, css, null);
FileUtils.writeStringToFile(outputFile, css, (String) null);
}

@Test
Expand Down Expand Up @@ -399,7 +399,7 @@ public void testCompileFileToFileWithForceFalseAndOutputExistsAndLessSourceModif
verify(doIt).call(cx, scope, null, new Object[]{less, false});

verifyStatic();
FileUtils.writeStringToFile(outputFile, css, null);
FileUtils.writeStringToFile(outputFile, css, (String) null);
}

@Test
Expand Down Expand Up @@ -464,7 +464,7 @@ public void testCompileLessSourceToFile() throws Exception {
verify(doIt).call(cx, scope, null, new Object[]{less, false});

verifyStatic();
FileUtils.writeStringToFile(outputFile, css, null);
FileUtils.writeStringToFile(outputFile, css, (String) null);
}

@Test
Expand All @@ -487,7 +487,7 @@ public void testCompileLessSourceToFileWithForceTrue() throws Exception {
verify(doIt).call(cx, scope, null, new Object[]{less, false});

verifyStatic();
FileUtils.writeStringToFile(outputFile, css, null);
FileUtils.writeStringToFile(outputFile, css, (String) null);
}

@Test
Expand All @@ -514,7 +514,7 @@ public void testCompileLessSourceToFileWithForceFalseAndOutputNotExists() throws
verify(doIt).call(cx, scope, null, new Object[]{less, false});

verifyStatic();
FileUtils.writeStringToFile(outputFile, css, null);
FileUtils.writeStringToFile(outputFile, css, (String) null);
}

@Test
Expand Down Expand Up @@ -545,7 +545,7 @@ public void testCompileLessSourceToFileWithForceFalseAndOutputExistsAndLessSourc
verify(doIt).call(cx, scope, null, new Object[]{less, false});

verifyStatic();
FileUtils.writeStringToFile(outputFile, css, null);
FileUtils.writeStringToFile(outputFile, css, (String) null);
}

@Test
Expand Down

0 comments on commit c6f45b7

Please sign in to comment.