diff --git a/converter-sbml/pom.xml b/converter-sbml/pom.xml index 278f035aadf9dbc38f6bd37f9591339723ba690d..d7cdf3e98113ccf7c6778c3ad968561a6d70ba5d 100644 --- a/converter-sbml/pom.xml +++ b/converter-sbml/pom.xml @@ -76,9 +76,24 @@ <groupId>org.sbml.jsbml</groupId> <artifactId>jsbml</artifactId> <version>1.2</version> + <!-- for now we use lower version of log4j and this one introduce some + problem with tomcat loggin --> + <exclusions> + <exclusion> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-api</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-1.2-api</artifactId> + </exclusion> + </exclusions> </dependency> - <dependency> <groupId>lcsb.mapviewer</groupId> <artifactId>converter-graphics</artifactId> diff --git a/web/src/main/webapp/WEB-INF/web.xml b/web/src/main/webapp/WEB-INF/web.xml index 9b6aa5e3e08a46dd5469cc0163928c9c677034eb..8bc3a2044e28e013e9031372d0425bdfd20f66c7 100644 --- a/web/src/main/webapp/WEB-INF/web.xml +++ b/web/src/main/webapp/WEB-INF/web.xml @@ -49,6 +49,13 @@ <param-name>javax.faces.FACELETS_SKIP_COMMENTS</param-name> <param-value>true</param-value> </context-param> + <context-param> + <param-name>log4jConfigLocation</param-name> + <param-value>/WEB-INF/resources/log4j.properties</param-value> + </context-param> + <listener> + <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class> + </listener> <listener> <listener-class> org.springframework.web.context.ContextLoaderListener @@ -59,13 +66,6 @@ org.springframework.security.web.session.HttpSessionEventPublisher </listener-class> </listener> - <context-param> - <param-name>log4jConfigLocation</param-name> - <param-value>/WEB-INF/resources/log4j.properties</param-value> - </context-param> - <listener> - <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class> - </listener> <welcome-file-list> <welcome-file>index.xhtml</welcome-file> </welcome-file-list>