|
12 | 12 | <scala.version>2.11.8</scala.version> |
13 | 13 | <scala.main.version>2.11</scala.main.version> |
14 | 14 | <spark.version>2.2.2</spark.version> |
15 | | - <scalatest.version>3.0.0</scalatest.version> |
16 | 15 | <connector.version>2.0.10</connector.version> |
17 | | - <cassandra.version>3.2</cassandra.version> |
18 | | - <junit.version>4.12</junit.version> |
19 | 16 | </properties> |
20 | 17 |
|
21 | 18 | <!-- |
|
64 | 61 | <!--<artifactId>commons-csv</artifactId>--> |
65 | 62 | <!--<version>1.0</version>--> |
66 | 63 | <!--</dependency>--> |
67 | | - |
68 | | - <!-- Test Dependencies --> |
69 | | - <dependency> |
70 | | - <groupId>com.datastax.spark</groupId> |
71 | | - <artifactId>spark-cassandra-connector-embedded_${scala.main.version}</artifactId> |
72 | | - <version>${connector.version}</version> |
73 | | - <scope>test</scope> |
74 | | - <exclusions> |
75 | | - <exclusion> |
76 | | - <groupId>com.datastax.cassandra</groupId> |
77 | | - <artifactId>cassandra-driver-core</artifactId> |
78 | | - </exclusion> |
79 | | - </exclusions> |
80 | | - </dependency> |
81 | | - <dependency> |
82 | | - <groupId>org.scalatest</groupId> |
83 | | - <artifactId>scalatest_${scala.main.version}</artifactId> |
84 | | - <version>${scalatest.version}</version> |
85 | | - <scope>test</scope> |
86 | | - </dependency> |
87 | | - <dependency> |
88 | | - <groupId>junit</groupId> |
89 | | - <artifactId>junit</artifactId> |
90 | | - <version>${junit.version}</version> |
91 | | - <scope>test</scope> |
92 | | - </dependency> |
93 | | - <dependency> |
94 | | - <groupId>org.apache.cassandra</groupId> |
95 | | - <artifactId>cassandra-all</artifactId> |
96 | | - <version>${cassandra.version}</version> |
97 | | - <scope>test</scope> |
98 | | - <exclusions> |
99 | | - <!-- Excluded to allow for Cassandra to run embedded --> |
100 | | - <exclusion> |
101 | | - <groupId>org.slf4j</groupId> |
102 | | - <artifactId>log4j-over-slf4j</artifactId> |
103 | | - </exclusion> |
104 | | - </exclusions> |
105 | | - </dependency> |
106 | | - <!-- Force Guava 18 on Test CP, Required for Cassandra --> |
107 | | - <dependency> |
108 | | - <groupId>com.google.guava</groupId> |
109 | | - <artifactId>guava</artifactId> |
110 | | - <version>18.0</version> |
111 | | - <scope>test</scope> |
112 | | - </dependency> |
113 | 64 | </dependencies> |
114 | 65 |
|
115 | 66 | <build> |
|
152 | 103 | </execution> |
153 | 104 | </executions> |
154 | 105 | </plugin> |
155 | | - <!-- Instructions from http://www.scalatest.org/user_guide/using_the_scalatest_maven_plugin --> |
156 | | - <!-- disable surefire --> |
157 | | - <plugin> |
158 | | - <groupId>org.apache.maven.plugins</groupId> |
159 | | - <artifactId>maven-surefire-plugin</artifactId> |
160 | | - <version>2.7</version> |
161 | | - <configuration> |
162 | | - <skipTests>true</skipTests> |
163 | | - </configuration> |
164 | | - </plugin> |
165 | | - <!-- enable scalatest --> |
166 | | - <plugin> |
167 | | - <groupId>org.scalatest</groupId> |
168 | | - <artifactId>scalatest-maven-plugin</artifactId> |
169 | | - <version>1.0</version> |
170 | | - <configuration> |
171 | | - <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory> |
172 | | - <junitxml>.</junitxml> |
173 | | - <filereports>WDF TestSuite.txt</filereports> |
174 | | - </configuration> |
175 | | - <executions> |
176 | | - <execution> |
177 | | - <id>test</id> |
178 | | - <goals> |
179 | | - <goal>test</goal> |
180 | | - </goals> |
181 | | - </execution> |
182 | | - </executions> |
183 | | - </plugin> |
184 | 106 | </plugins> |
185 | 107 | </build> |
186 | 108 | </project> |
0 commit comments