|
102 | 102 | <version>${spark.version}</version>
|
103 | 103 | <scope>provided</scope>
|
104 | 104 | </dependency>
|
105 |
| - |
106 | 105 | <dependency>
|
107 | 106 | <groupId>org.apache.spark</groupId>
|
108 | 107 | <artifactId>spark-hive_${scala.compat.version}</artifactId>
|
109 | 108 | <version>${spark.version}</version>
|
110 | 109 | <scope>provided</scope>
|
111 | 110 | </dependency>
|
112 |
| - |
113 | 111 | <!-- HADOOP AWS SUPPORT -->
|
114 | 112 | <dependency>
|
115 | 113 | <groupId>org.apache.hadoop</groupId>
|
|
123 | 121 | <version>2.9.2</version>
|
124 | 122 | <scope>provided</scope>
|
125 | 123 | </dependency>
|
126 |
| - |
127 | 124 | <!-- CONNECTORS -->
|
128 | 125 | <dependency>
|
129 | 126 | <groupId>com.datastax.spark</groupId>
|
|
140 | 137 | <artifactId>spark-dynamodb_${scala.compat.version}</artifactId>
|
141 | 138 | <version>1.0.1</version>
|
142 | 139 | </dependency>
|
143 |
| - |
144 | 140 | <!-- TYPESAFE CONFIG -->
|
145 | 141 | <dependency>
|
146 | 142 | <groupId>com.typesafe</groupId>
|
147 | 143 | <artifactId>config</artifactId>
|
148 | 144 | <version>1.4.0</version>
|
149 | 145 | </dependency>
|
150 |
| - |
151 | 146 | <!-- Test -->
|
152 | 147 | <dependency>
|
153 | 148 | <groupId>org.scalatest</groupId>
|
|
161 | 156 | <version>42.2.9</version>
|
162 | 157 | <scope>test</scope>
|
163 | 158 | </dependency>
|
164 |
| - |
165 | 159 | </dependencies>
|
166 | 160 |
|
167 | 161 | <build>
|
|
181 | 175 | </execution>
|
182 | 176 | </executions>
|
183 | 177 | </plugin>
|
184 |
| - |
185 | 178 | <plugin>
|
186 | 179 | <groupId>net.alchim31.maven</groupId>
|
187 | 180 | <artifactId>scala-maven-plugin</artifactId>
|
|
222 | 215 | </execution>
|
223 | 216 | </executions>
|
224 | 217 | </plugin>
|
225 |
| - |
226 | 218 | <plugin>
|
227 | 219 | <groupId>org.apache.maven.plugins</groupId>
|
228 | 220 | <artifactId>maven-javadoc-plugin</artifactId>
|
229 | 221 | <version>3.0.1</version>
|
230 | 222 | </plugin>
|
231 |
| - |
232 | 223 | <plugin>
|
233 | 224 | <groupId>org.apache.maven.plugins</groupId>
|
234 | 225 | <artifactId>maven-source-plugin</artifactId>
|
|
246 | 237 | </execution>
|
247 | 238 | </executions>
|
248 | 239 | </plugin>
|
249 |
| - |
250 | 240 | <plugin>
|
251 | 241 | <groupId>org.apache.maven.plugins</groupId>
|
252 | 242 | <artifactId>maven-surefire-plugin</artifactId>
|
|
255 | 245 | <skipTests>true</skipTests>
|
256 | 246 | </configuration>
|
257 | 247 | </plugin>
|
258 |
| - |
259 | 248 | <plugin>
|
260 | 249 | <groupId>org.scalatest</groupId>
|
261 | 250 | <artifactId>scalatest-maven-plugin</artifactId>
|
|
276 | 265 | </execution>
|
277 | 266 | </executions>
|
278 | 267 | </plugin>
|
279 |
| - |
280 | 268 | <plugin>
|
281 | 269 | <groupId>org.apache.maven.plugins</groupId>
|
282 | 270 | <artifactId>maven-deploy-plugin</artifactId>
|
|
285 | 273 | <skip>true</skip>
|
286 | 274 | </configuration>
|
287 | 275 | </plugin>
|
| 276 | + <plugin> |
| 277 | + <groupId>org.sonatype.plugins</groupId> |
| 278 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 279 | + <version>1.6.8</version> |
| 280 | + <executions> |
| 281 | + <execution> |
| 282 | + <id>default-deploy</id> |
| 283 | + <phase>deploy</phase> |
| 284 | + <goals> |
| 285 | + <goal>deploy</goal> |
| 286 | + </goals> |
| 287 | + </execution> |
| 288 | + </executions> |
| 289 | + <configuration> |
| 290 | + <serverId>ossrh</serverId> |
| 291 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 292 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 293 | + </configuration> |
| 294 | + </plugin> |
288 | 295 | <plugin>
|
289 | 296 | <groupId>org.scoverage</groupId>
|
290 | 297 | <artifactId>scoverage-maven-plugin</artifactId>
|
|
295 | 302 | <!-- other parameters -->
|
296 | 303 | </configuration>
|
297 | 304 | </plugin>
|
298 |
| - |
299 | 305 | <plugin>
|
300 | 306 | <groupId>org.apache.maven.plugins</groupId>
|
301 | 307 | <artifactId>maven-site-plugin</artifactId>
|
|
304 | 310 | <skip>true</skip>
|
305 | 311 | </configuration>
|
306 | 312 | </plugin>
|
307 |
| - |
308 | 313 | <plugin>
|
309 | 314 | <groupId>org.apache.maven.plugins</groupId>
|
310 | 315 | <artifactId>maven-help-plugin</artifactId>
|
|
345 | 350 | <spark.compat.version>2.4</spark.compat.version>
|
346 | 351 | </properties>
|
347 | 352 | </profile>
|
348 |
| - |
349 | 353 | <profile>
|
350 | 354 | <id>spark_2.3</id>
|
351 | 355 | <properties>
|
352 | 356 | <spark.version>2.3.4</spark.version>
|
353 | 357 | <spark.compat.version>2.3</spark.compat.version>
|
354 | 358 | </properties>
|
355 | 359 | </profile>
|
356 |
| - |
357 | 360 | <profile>
|
358 | 361 | <id>snapshot</id>
|
359 | 362 | <properties>
|
|
366 | 369 | </snapshotRepository>
|
367 | 370 | </distributionManagement>
|
368 | 371 | </profile>
|
369 |
| - |
370 | 372 | <profile>
|
371 | 373 | <id>release</id>
|
372 | 374 | <properties>
|
373 | 375 | <changelist></changelist>
|
374 | 376 | </properties>
|
375 | 377 | <build>
|
376 | 378 | <plugins>
|
377 |
| - <plugin> |
378 |
| - <groupId>org.sonatype.plugins</groupId> |
379 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
380 |
| - <version>1.6.8</version> |
381 |
| - <executions> |
382 |
| - <execution> |
383 |
| - <id>default-deploy</id> |
384 |
| - <phase>deploy</phase> |
385 |
| - <goals> |
386 |
| - <goal>deploy</goal> |
387 |
| - </goals> |
388 |
| - </execution> |
389 |
| - </executions> |
390 |
| - <configuration> |
391 |
| - <serverId>ossrh</serverId> |
392 |
| - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
393 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
394 |
| - </configuration> |
395 |
| - </plugin> |
396 | 379 | <plugin>
|
397 | 380 | <groupId>org.apache.maven.plugins</groupId>
|
398 | 381 | <artifactId>maven-gpg-plugin</artifactId>
|
|
0 commit comments