Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion scala/maven/dse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<scala.main.version>2.11</scala.main.version>
<scalatest.version>3.0.0</scalatest.version>
<connector.version>2.0.10</connector.version>
<cassandra.version>3.2</cassandra.version>
<cassandra.version>3.11.10</cassandra.version>
<junit.version>4.12</junit.version>
</properties>

Expand Down Expand Up @@ -62,6 +62,13 @@
<version>${cassandra.version}</version>
<scope>test</scope>
</dependency>
<!-- Force Guava 18 on Test CP, Required for Cassandra -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
Expand Down Expand Up @@ -130,6 +137,9 @@
<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
<junitxml>.</junitxml>
<filereports>WDF TestSuite.txt</filereports>
<systemProperties>
<test.cassandra.version>${cassandra.version}</test.cassandra.version>
</systemProperties>
</configuration>
<executions>
<execution>
Expand Down
5 changes: 4 additions & 1 deletion scala/maven/oss/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<spark.version>2.2.2</spark.version>
<scalatest.version>3.0.0</scalatest.version>
<connector.version>2.0.10</connector.version>
<cassandra.version>3.2</cassandra.version>
<cassandra.version>3.11.10</cassandra.version>
<junit.version>4.12</junit.version>
</properties>

Expand Down Expand Up @@ -171,6 +171,9 @@
<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
<junitxml>.</junitxml>
<filereports>WDF TestSuite.txt</filereports>
<systemProperties>
Copy link
Contributor Author

@tlasica tlasica Nov 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Required so that proper template file is picked up.

<test.cassandra.version>${cassandra.version}</test.cassandra.version>
</systemProperties>
</configuration>
<executions>
<execution>
Expand Down
Loading