Skip to content

Commit

Permalink
Next development: 2.3.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
kdaud authored and rbuisson committed Jun 6, 2024
1 parent 002ecf4 commit 0f10260
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ADD ./src src/
RUN mvn clean package -DskipTests --batch-mode

FROM eclipse-temurin:11-jre
ARG JAR_VERSION=2.2.0
ARG JAR_VERSION=2.3.0-SNAPSHOT
RUN mkdir -p /app
WORKDIR /app
COPY --from=builder target/flink-jobs-${JAR_VERSION}-etl-streaming.jar streaming-etl-job.jar
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_batch
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY ./src src/
RUN mvn clean install -Pbatch -DskipTests --batch-mode

FROM eclipse-temurin:11-jre
ARG JAR_VERSION=2.2.0
ARG JAR_VERSION=2.3.0-SNAPSHOT
RUN mkdir -p /app
WORKDIR /app
COPY --from=builder target/flink-jobs-${JAR_VERSION}-etl-batch.jar etl-batch.jar
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_parquet_export
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ADD ./src src/
RUN mvn clean install -Pbatch -DskipTests --batch-mode

FROM eclipse-temurin:11-jre
ARG JAR_VERSION=2.2.0
ARG JAR_VERSION=2.3.0-SNAPSHOT
RUN mkdir -p /app
WORKDIR /app
ENV OUTPUT_DIR=/parquet
Expand Down
2 changes: 1 addition & 1 deletion development/setup-connect/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.20
FROM alpine:latest
# Set non-built-time labels
LABEL org.opencontainers.image.authors="Mekom Solutions"
LABEL org.opencontainers.image.description="A custom image used to configure kafka connect for flink"
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.ozonehis</groupId>
<artifactId>flink-jobs</artifactId>
<version>2.2.0</version>
<version>2.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Ozone ETL Pipelines</name>

Expand Down Expand Up @@ -35,8 +35,8 @@
<palantirJavaFormat.version>1.1.0</palantirJavaFormat.version>
<mysql.connector.version>8.2.0</mysql.connector.version>
<testcontainers.version>1.19.7</testcontainers.version>
<analytics.queries.version>1.0.0</analytics.queries.version>
<ozone.version>1.0.0-alpha.10</ozone.version>
<analytics.queries.version>1.1.0-SNAPSHOT</analytics.queries.version>
<ozone.version>1.0.0-SNAPSHOT</ozone.version>
<spring.version>5.3.23</spring.version>

<!-- Plugins -->
Expand Down

0 comments on commit 0f10260

Please sign in to comment.