mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-21 21:57:56 +01:00
Update to jslt 3.0.1
This commit is contained in:
parent
4ebef65728
commit
40afd70780
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
# Based info setup ...
|
# Based info setup ...
|
||||||
#FROM --platform=$BUILDPLATFORM tomcat:9.0.71-jdk17
|
#FROM --platform=$BUILDPLATFORM tomcat:9.0.71-jdk17
|
||||||
FROM tomcat:9.0.71-jdk17
|
FROM tomcat:10.1.11-jdk17
|
||||||
LABEL maintainer="Paulo Gustavo Veiga <pveiga@wisemapping.com>"
|
LABEL maintainer="Paulo Gustavo Veiga <pveiga@wisemapping.com>"
|
||||||
|
|
||||||
# Build variables ...
|
# Build variables ...
|
||||||
@ -21,7 +21,7 @@ RUN cd ${WEBAPP_TARGET_DIR} && jar -xvf /tmp/wisemapping.war
|
|||||||
RUN rm /tmp/wisemapping.war
|
RUN rm /tmp/wisemapping.war
|
||||||
|
|
||||||
# Change logger to
|
# Change logger to
|
||||||
RUN cp ${WEBAPP_TARGET_DIR}/WEB-INF/classes/log4j-stdout.xml ${WEBAPP_TARGET_DIR}/WEB-INF/classes/log4j.properties
|
RUN cp ${WEBAPP_TARGET_DIR}/WEB-INF/classes/log4j-stdout.xml ${WEBAPP_TARGET_DIR}/WEB-INF/classes/log4j.xml
|
||||||
|
|
||||||
# Add support for proxy
|
# Add support for proxy
|
||||||
RUN sed -i 's|\
|
RUN sed -i 's|\
|
||||||
@ -32,9 +32,6 @@ RUN sed -i 's|\
|
|||||||
</Host>|' \
|
</Host>|' \
|
||||||
/usr/local/tomcat/conf/server.xml
|
/usr/local/tomcat/conf/server.xml
|
||||||
|
|
||||||
RUN sed -i 's|<Context>|<Context>\
|
|
||||||
<Loader jakartaConverter="TOMCAT" />|' \
|
|
||||||
/usr/local/tomcat/conf/context.xml
|
|
||||||
# Copy default HSQL DB for testing ...
|
# Copy default HSQL DB for testing ...
|
||||||
RUN mkdir -p ${DB_BASE_DIR}/db
|
RUN mkdir -p ${DB_BASE_DIR}/db
|
||||||
COPY db/ ${DB_BASE_DIR}/db
|
COPY db/ ${DB_BASE_DIR}/db
|
||||||
|
@ -4,7 +4,7 @@ set -o
|
|||||||
set -u
|
set -u
|
||||||
|
|
||||||
mvn -f ../pom.xml clean package
|
mvn -f ../pom.xml clean package
|
||||||
#docker build --platform linux/amd64 -t wisemapping/wisemapping:latest -f ./Dockerfile ../wise-webapp/target/
|
docker build --platform linux/amd64 -t wisemapping/wisemapping:latest -f ./Dockerfile ../wise-webapp/target/
|
||||||
docker buildx create --use --platform=linux/arm64,linux/amd64 --name multi-platform-builder
|
#docker buildx create --use --platform=linux/arm64,linux/amd64 --name multi-platform-builder
|
||||||
docker buildx inspect --bootstrap
|
#docker buildx inspect --bootstrap
|
||||||
docker buildx build --platform=linux/amd64,linux/arm64 --push -t wisemapping/wisemapping:latest -f ./Dockerfile ../wise-webapp/target/
|
#docker buildx build --platform=linux/amd64,linux/arm64 --push -t wisemapping/wisemapping:latest -f ./Dockerfile ../wise-webapp/target/
|
||||||
|
@ -223,7 +223,17 @@
|
|||||||
<version>6.0.0</version>
|
<version>6.0.0</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<!-- JSLT implementation -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>jakarta.servlet.jsp.jstl</groupId>
|
||||||
|
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
|
||||||
|
<version>3.0.0</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.web</groupId>
|
||||||
|
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
|
||||||
|
<version>3.0.0</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-io</groupId>
|
<groupId>commons-io</groupId>
|
||||||
<artifactId>commons-io</artifactId>
|
<artifactId>commons-io</artifactId>
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
<%@taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
<%@taglib uri="jakarta.tags.functions" prefix="fn" %>
|
||||||
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
<%@taglib uri="jakarta.tags.core" prefix="c"%>
|
||||||
<%@taglib prefix="spring" uri="http://www.springframework.org/tags" %>
|
|
||||||
<%@taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
|
||||||
<%@ taglib uri = "http://java.sun.com/jsp/jstl/functions" prefix = "fn" %>
|
|
||||||
|
|
||||||
<%
|
<%
|
||||||
|
|
||||||
request.setAttribute("principal", com.wisemapping.security.Utils.getUser());
|
request.setAttribute("principal", com.wisemapping.security.Utils.getUser());
|
||||||
%>
|
%>
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
<%@taglib uri="jakarta.tags.core" prefix="c"%>
|
||||||
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
|
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<%@ taglib uri = "http://java.sun.com/jsp/jstl/functions" prefix = "fn" %>
|
<%@ taglib uri = "jakarta.tags.functions" prefix = "fn" %>
|
||||||
<%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
|
<%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
Loading…
Reference in New Issue
Block a user