Skip to content

Commit a52c0fa

Browse files
committed
fix test dependency
1 parent cd8f59d commit a52c0fa

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@
234234
</dependency>
235235
<dependency>
236236
<groupId>org.easymock</groupId>
237-
<artifactId>easymock</artifactId>
237+
<artifactId>easymockclassextension</artifactId>
238238
<scope>test</scope>
239239
</dependency>
240240
<dependency>

mllib/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@
5050
<groupId>org.scalanlp</groupId>
5151
<artifactId>breeze_${scala.binary.version}</artifactId>
5252
<version>0.7</version>
53+
<exclusions>
54+
<exclusion>
55+
<groupId>junit</groupId>
56+
<artifactId>junit</artifactId>
57+
</exclusion>
58+
</exclusions>
5359
</dependency>
5460
<dependency>
5561
<groupId>org.scalatest</groupId>

pom.xml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -452,14 +452,14 @@
452452
</dependency>
453453
<dependency>
454454
<groupId>org.easymock</groupId>
455-
<artifactId>easymock</artifactId>
455+
<artifactId>easymockclassextension</artifactId>
456456
<version>3.1</version>
457457
<scope>test</scope>
458458
</dependency>
459459
<dependency>
460460
<groupId>org.mockito</groupId>
461461
<artifactId>mockito-all</artifactId>
462-
<version>1.8.5</version>
462+
<version>1.9.0</version>
463463
<scope>test</scope>
464464
</dependency>
465465
<dependency>
@@ -468,6 +468,12 @@
468468
<version>1.11.3</version>
469469
<scope>test</scope>
470470
</dependency>
471+
<dependency>
472+
<groupId>junit</groupId>
473+
<artifactId>junit</artifactId>
474+
<version>4.10</version>
475+
<scope>test</scope>
476+
</dependency>
471477
<dependency>
472478
<groupId>com.novocode</groupId>
473479
<artifactId>junit-interface</artifactId>
@@ -733,6 +739,7 @@
733739
<arg>-unchecked</arg>
734740
<arg>-deprecation</arg>
735741
<arg>-feature</arg>
742+
<arg>-language:postfixOps</arg>
736743
</args>
737744
<jvmArgs>
738745
<jvmArg>-Xms1024m</jvmArg>

0 commit comments

Comments
 (0)