Skip to content

Commit

Permalink
deegree#1401 fixes to classifier for primefaces extension and imports
Browse files Browse the repository at this point in the history
  • Loading branch information
tfr42 committed Jan 25, 2024
1 parent 1c68eae commit 411ba68
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,15 @@ else if (item.getName() != null && item.getName().length() > 0 && item.getSize()
}
catch (FileUploadException fe) {
ServletException servletEx = new ServletException(fe);
throw servletEx;
throw servletEx;
}
catch (UnsupportedEncodingException e) {
ServletException servletEx = new ServletException(e);
throw servletEx;
throw servletEx;
}
catch (IOException e) {
ServletException servletEx = new ServletException(e);
throw servletEx;
throw servletEx;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,15 @@
import java.net.URL;
import java.net.URLDecoder;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;

import javax.imageio.spi.IIORegistry;
import jakarta.servlet.ServletConfig;
Expand Down
1 change: 1 addition & 0 deletions deegree-services/deegree-webservices/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@
<groupId>org.primefaces.extensions</groupId>
<artifactId>primefaces-extensions</artifactId>
<version>13.0.4</version>
<classifier>jakarta</classifier>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down

0 comments on commit 411ba68

Please sign in to comment.