diff options
author | Thomas Knall <t.knall@datentechnik-innovation.com> | 2015-01-14 12:41:54 +0100 |
---|---|---|
committer | Thomas Knall <t.knall@datentechnik-innovation.com> | 2015-01-14 12:41:54 +0100 |
commit | 33a37cce841e6c48ab044cd153aa7ed7cfffc6cc (patch) | |
tree | 87ed8d7410a2f680c359b75a1d67c5c35439ab6c /id/server/auth | |
parent | 0ed0a7702850b2001aaa8d5b194708a96e90dea3 (diff) | |
download | moa-id-spss-33a37cce841e6c48ab044cd153aa7ed7cfffc6cc.tar.gz moa-id-spss-33a37cce841e6c48ab044cd153aa7ed7cfffc6cc.tar.bz2 moa-id-spss-33a37cce841e6c48ab044cd153aa7ed7cfffc6cc.zip |
Apply some minor fixes.
- Add some FIXMEs.
- Fix moa-id-auth web.xml and switch to Servlet 3.0.
- Fix moa-id-auth logging (replace commons-logging with commons-logging-slf4j bridge, use log4j native binding).
- Adjust logging of periodical tasks (no more logging at info level).
Diffstat (limited to 'id/server/auth')
-rw-r--r-- | id/server/auth/pom.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/id/server/auth/pom.xml b/id/server/auth/pom.xml index dd75ee6aa..7db6ce648 100644 --- a/id/server/auth/pom.xml +++ b/id/server/auth/pom.xml @@ -112,11 +112,25 @@ <artifactId>axis-wsdl4j</artifactId> <groupId>axis</groupId> </exclusion> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> </exclusions> </dependency> <dependency> <groupId>MOA.id.server</groupId> <artifactId>moa-id-lib</artifactId> + <exclusions> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> + <exclusion> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>eu.stork</groupId> @@ -173,6 +187,13 @@ <!-- should be provided by the container or jre --> <scope>provided</scope> </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>jcl-over-slf4j</artifactId> + <version>1.7.10</version> + </dependency> + </dependencies> </project> |