diff options
Diffstat (limited to 'dmaap-bc')
-rw-r--r-- | dmaap-bc/pom.xml | 6 | ||||
-rw-r--r-- | dmaap-bc/src/main/resources/docker/Dockerfile | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/dmaap-bc/pom.xml b/dmaap-bc/pom.xml index 2c34e8d..3c09d70 100644 --- a/dmaap-bc/pom.xml +++ b/dmaap-bc/pom.xml @@ -187,7 +187,7 @@ <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-http</artifactId> - <version>${jettyVersion}</version> + <version>9.4.43.v20210629</version> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple --> @@ -262,6 +262,10 @@ <artifactId>bsh</artifactId> <groupId>org.beanshell</groupId> </exclusion> + <exclusion> + <artifactId>maven-core</artifactId> + <groupId>org.apache.maven</groupId> + </exclusion> </exclusions> </dependency> <dependency> diff --git a/dmaap-bc/src/main/resources/docker/Dockerfile b/dmaap-bc/src/main/resources/docker/Dockerfile index a801896..f9c913f 100644 --- a/dmaap-bc/src/main/resources/docker/Dockerfile +++ b/dmaap-bc/src/main/resources/docker/Dockerfile @@ -27,7 +27,7 @@ WORKDIR /opt/app/dmaapbc COPY /opt /opt USER root -RUN apk add --no-cache curl jq net-tools wget procps \ +RUN apk add --no-cache curl jq net-tools procps \ && mkdir -p /opt/app/osaaf && \ chmod +x bin/* && \ |