File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11* .md
22. *
33Dockerfile
4- build
4+ api / build
55docs
66web /node_modules
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ COPY build.gradle build.gradle
1212COPY api ./api
1313COPY api/build.gradle ./api/build.gradle
1414COPY clients/java ./clients/java
15- RUN ./gradlew --no-daemon :api:shadowJar
15+ RUN ./gradlew --no-daemon clean :api:shadowJar
1616
1717FROM eclipse-temurin:17
1818RUN apt-get update && apt-get install -y postgresql-client bash coreutils
Original file line number Diff line number Diff line change @@ -55,14 +55,14 @@ subprojects {
5555
5656 ext {
5757 assertjVersion = ' 3.23.1'
58- dropwizardVersion = ' 2.1.1 '
58+ dropwizardVersion = ' 2.1.2 '
5959 jacocoVersion = ' 0.8.8'
60- junit5Version = ' 5.8.2 '
60+ junit5Version = ' 5.9.1 '
6161 lombokVersion = ' 1.18.24'
62- mockitoVersion = ' 4.5.1 '
62+ mockitoVersion = ' 4.8.0 '
6363 openlineageVersion = ' 0.14.1'
6464 slf4jVersion = ' 1.7.36'
65- postgresqlVersion = ' 42.3.7 '
65+ postgresqlVersion = ' 42.5.0 '
6666 isReleaseVersion = ! version. endsWith(' SNAPSHOT' )
6767 }
6868
Original file line number Diff line number Diff line change @@ -12,14 +12,8 @@ if [[ -z "${MARQUEZ_CONFIG}" ]]; then
1212 echo " WARNING 'MARQUEZ_CONFIG' not set, using development configuration."
1313fi
1414
15- if [[ -z " ${MARQUEZ_VERSION} " ]]; then
16- MARQUEZ_VERSION=' *'
17- echo " WARNING 'MARQUEZ_VERSION' not set. Running could fail if directory contains multiple jar versions."
18- fi
19-
20-
2115# Adjust java options for the http server
2216JAVA_OPTS=" ${JAVA_OPTS} -Duser.timezone=UTC -Dlog4j2.formatMsgNoLookups=true"
2317
2418# Start http server with java options and configuration
25- java ${JAVA_OPTS} -jar marquez-${MARQUEZ_VERSION} .jar server ${MARQUEZ_CONFIG}
19+ java ${JAVA_OPTS} -jar marquez-* .jar server ${MARQUEZ_CONFIG}
You can’t perform that action at this time.
0 commit comments