Skip to content

Commit fcb3fe7

Browse files
committed
fix IT by lock down a few versions
1 parent fe0cb44 commit fcb3fe7

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

gem-maven-plugin/src/it/execute-compass-with-gems-from-plugin/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,18 @@
3939
<version>1.0.3</version>
4040
<type>gem</type>
4141
</dependency>
42+
<dependency>
43+
<groupId>rubygems</groupId>
44+
<artifactId>sass</artifactId>
45+
<version>3.4.0</version>
46+
<type>gem</type>
47+
</dependency>
48+
<dependency>
49+
<groupId>rubygems</groupId>
50+
<artifactId>rb-inotify</artifactId>
51+
<version>0.9.0</version>
52+
<type>gem</type>
53+
</dependency>
4254
</dependencies>
4355
</plugin>
4456
</plugins>

gem-maven-plugin/src/it/execute-compass-with-gems-from-plugin/verify.bsh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if ( !log.contains( expected ) )
1313
{
1414
throw new RuntimeException( "log file does not contain '" + expected + "'" );
1515
}
16-
expected = "Sass 3.5 will no longer support Ruby 1.9.3";
16+
expected = "Individual stylesheets must be in the sass directory.";
1717
if ( !log.contains( expected ) )
1818
{
1919
throw new RuntimeException( "log file does not contain '" + expected + "'" );

0 commit comments

Comments
 (0)