Skip to content
Snippets Groups Projects
Commit 5d03c0f7 authored by Robert Butora's avatar Robert Butora
Browse files

build: bugfix (slf4j and jjwt lib were not available runtime)

parent 454d5ada
No related branches found
No related tags found
No related merge requests found
...@@ -97,24 +97,26 @@ ...@@ -97,24 +97,26 @@
<!-- auth dependencies (mostly caused by jjwt lib) --> <!-- auth dependencies (mostly caused by jjwt lib) -->
<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-jackson --> <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api -->
<dependency> <dependency>
<groupId>io.jsonwebtoken</groupId> <groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId> <artifactId>jjwt-api</artifactId>
<version>0.12.3</version> <version>0.12.3</version>
<scope>runtime</scope>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api --> <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api -->
<dependency> <dependency>
<groupId>io.jsonwebtoken</groupId> <groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId> <artifactId>jjwt-impl</artifactId>
<version>0.12.3</version> <version>0.12.3</version>
<scope>runtime</scope>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api -->
<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-jackson -->
<dependency> <dependency>
<groupId>io.jsonwebtoken</groupId> <groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId> <artifactId>jjwt-jackson</artifactId>
<version>0.12.3</version> <version>0.12.3</version>
<scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
...@@ -152,7 +154,6 @@ ...@@ -152,7 +154,6 @@
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId> <artifactId>slf4j-simple</artifactId>
<version>1.7.36</version> <version>1.7.36</version>
<scope>test</scope>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic --> <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
......
...@@ -33,9 +33,7 @@ ARG VLKB_VERSION ...@@ -33,9 +33,7 @@ ARG VLKB_VERSION
COPY vlkb-${VLKB_VERSION}.deb ./ COPY vlkb-${VLKB_VERSION}.deb ./
COPY vlkb-soda-${VLKB_VERSION}.war ${WEBAPP_DIR}/ COPY vlkb-soda-${VLKB_VERSION}.war ${WEBAPP_DIR}/
RUN dpkg -i vlkb-${VLKB_VERSION}.deb \ RUN dpkg -i vlkb-${VLKB_VERSION}.deb \
&& cd ${WEBAPP_DIR} && unzip vlkb-soda-${VLKB_VERSION}.war \ && cd ${WEBAPP_DIR} && unzip vlkb-soda-${VLKB_VERSION}.war
&& rm -f $WEBAPP_DIR/WEB-INF/lib/jjwt-*0.11*.jar
# remove jjwt used by IA2 (IA2 and IAM token filters used different ver of jjwt)
# configure instance # configure instance
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment