|
9 | 9 | <version>0.1.1-SNAPSHOT</version> |
10 | 10 | <packaging>pom</packaging> |
11 | 11 | <name>spark-test-parent</name> |
12 | | - <description>Maven Java port of the bigdata-test Spark JUnit 5 example, with Apache and Cloudera Spark modules.</description> |
| 12 | + <description>Maven Java port of the bigdata-test Spark JUnit 5 example, with Apache and Cloudera Spark modules. |
| 13 | + </description> |
13 | 14 |
|
14 | 15 | <modules> |
15 | 16 | <module>spark-test-common</module> |
|
22 | 23 | <maven.compiler.release>17</maven.compiler.release> |
23 | 24 |
|
24 | 25 | <!-- bigdata-test framework, published locally as 0.1.1-SNAPSHOT --> |
25 | | - <bigdata-test.version>0.1.1</bigdata-test.version> |
| 26 | + <bigdata-test.version>0.1.2</bigdata-test.version> |
26 | 27 |
|
27 | 28 | <!-- shared, version-line independent dependencies --> |
28 | 29 | <junit.version>5.11.4</junit.version> |
|
37 | 38 | <java-dns.version>0.1.1</java-dns.version> |
38 | 39 |
|
39 | 40 | <!-- forked test JVM options mirrored from the Gradle example --> |
40 | | - <bigdata.test.argLine>--add-exports=java.base/sun.nio.ch=ALL-UNNAMED --add-opens=java.base/java.nio=ALL-UNNAMED --add-opens=java.base/java.net=ALL-UNNAMED -Xms2048m -Xmx8192m</bigdata.test.argLine> |
| 41 | + <bigdata.test.argLine>--add-exports=java.base/sun.nio.ch=ALL-UNNAMED --add-opens=java.base/java.nio=ALL-UNNAMED |
| 42 | + --add-opens=java.base/java.net=ALL-UNNAMED -Xms2048m -Xmx8192m |
| 43 | + </bigdata.test.argLine> |
41 | 44 | </properties> |
42 | 45 |
|
43 | 46 | <repositories> |
|
46 | 49 | <repository> |
47 | 50 | <id>central</id> |
48 | 51 | <url>https://repo1.maven.org/maven2</url> |
49 | | - <releases><enabled>true</enabled></releases> |
50 | | - <snapshots><enabled>false</enabled></snapshots> |
| 52 | + <releases> |
| 53 | + <enabled>true</enabled> |
| 54 | + </releases> |
| 55 | + <snapshots> |
| 56 | + <enabled>false</enabled> |
| 57 | + </snapshots> |
51 | 58 | </repository> |
52 | 59 | <repository> |
53 | 60 | <id>cloudera</id> |
54 | 61 | <url>https://repository.cloudera.com/repository/cloudera-repos/</url> |
55 | | - <releases><enabled>true</enabled></releases> |
56 | | - <snapshots><enabled>false</enabled></snapshots> |
| 62 | + <releases> |
| 63 | + <enabled>true</enabled> |
| 64 | + </releases> |
| 65 | + <snapshots> |
| 66 | + <enabled>false</enabled> |
| 67 | + </snapshots> |
57 | 68 | </repository> |
58 | 69 | <repository> |
59 | 70 | <id>confluent</id> |
60 | 71 | <url>https://packages.confluent.io/maven/</url> |
61 | | - <releases><enabled>true</enabled></releases> |
62 | | - <snapshots><enabled>false</enabled></snapshots> |
| 72 | + <releases> |
| 73 | + <enabled>true</enabled> |
| 74 | + </releases> |
| 75 | + <snapshots> |
| 76 | + <enabled>false</enabled> |
| 77 | + </snapshots> |
63 | 78 | </repository> |
64 | 79 | </repositories> |
65 | 80 |
|
66 | 81 | <dependencyManagement> |
67 | 82 | <dependencies> |
68 | | - <!-- Pin jackson-annotations to Apache Spark 3.5's Jackson line (2.15.2). Maven's |
69 | | - nearest-wins would otherwise select Cloudera Spark's 2.12.7, whose |
70 | | - JsonFormat.Feature lacks READ_UNKNOWN_ENUM_VALUES_USING_DEFAULT_VALUE that |
71 | | - Testcontainers 2.0.4's shaded Jackson requires. Annotations are forward |
72 | | - compatible, and jackson-databind/core are intentionally left at each Spark |
73 | | - line's own version. --> |
| 83 | + <!-- Pin jackson-annotations to Apache Spark 3.5's Jackson line (2.15.2). Maven's |
| 84 | + nearest-wins would otherwise select Cloudera Spark's 2.12.7, whose |
| 85 | + JsonFormat.Feature lacks READ_UNKNOWN_ENUM_VALUES_USING_DEFAULT_VALUE that |
| 86 | + Testcontainers 2.0.4's shaded Jackson requires. Annotations are forward |
| 87 | + compatible, and jackson-databind/core are intentionally left at each Spark |
| 88 | + line's own version. --> |
74 | 89 | <dependency> |
75 | 90 | <groupId>com.fasterxml.jackson.core</groupId> |
76 | 91 | <artifactId>jackson-annotations</artifactId> |
|
0 commit comments