Skip to content

Commit

Permalink
Update & add dependency for internal purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyong-lee-dev committed Apr 29, 2024
1 parent fd86f85 commit e62ed94
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,9 @@
<!-- Needed for consistent times -->
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss z</maven.build.timestamp.format>

<!-- Needed for aws java sdk bundle version -->
<aws.java.sdk.bundle.version>1.11.1014</aws.java.sdk.bundle.version>

<!-- SPARK-36796 for JDK-17 test-->
<extraJavaTestArgs>
-XX:+IgnoreUnrecognizedVMOptions
Expand Down Expand Up @@ -425,6 +428,12 @@
<artifactId>junit-interface</artifactId>
<scope>test</scope>
</dependency>
<!-- AWS java sdk version을 최신화 하기 위해 최 상단에 dependency 정의-->
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-bundle</artifactId>
<version>${aws.java.sdk.bundle.version}</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ FROM eclipse-temurin:${java_image_tag}

ARG spark_uid=185

ENV TZ Asia/Seoul

# Before building the docker image, first build and make a Spark distribution following
# the instructions in https://spark.apache.org/docs/latest/building-spark.html.
# If this docker file is being used in the context of building your images from a Spark
Expand Down

0 comments on commit e62ed94

Please sign in to comment.