com.networknt:audit
Advanced tools
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
| artifactId=audit | ||
| groupId=com.networknt | ||
| version=2.2.0 |
| <!-- | ||
| ~ Copyright (c) 2016 Network New Technologies Inc. | ||
| ~ | ||
| ~ Licensed under the Apache License, Version 2.0 (the "License"); | ||
| ~ you may not use this file except in compliance with the License. | ||
| ~ You may obtain a copy of the License at | ||
| ~ | ||
| ~ http://www.apache.org/licenses/LICENSE-2.0 | ||
| ~ | ||
| ~ Unless required by applicable law or agreed to in writing, software | ||
| ~ distributed under the License is distributed on an "AS IS" BASIS, | ||
| ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| ~ See the License for the specific language governing permissions and | ||
| ~ limitations under the License. | ||
| --> | ||
| <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
| <parent> | ||
| <groupId>com.networknt</groupId> | ||
| <artifactId>light-4j</artifactId> | ||
| <version>2.2.0</version> | ||
| <relativePath>../pom.xml</relativePath> | ||
| </parent> | ||
| <artifactId>audit</artifactId> | ||
| <packaging>jar</packaging> | ||
| <description>A audit logger module that dump request and response based on configuration</description> | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>com.networknt</groupId> | ||
| <artifactId>config</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.networknt</groupId> | ||
| <artifactId>utility</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.networknt</groupId> | ||
| <artifactId>http-string</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.networknt</groupId> | ||
| <artifactId>handler</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.networknt</groupId> | ||
| <artifactId>status</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.networknt</groupId> | ||
| <artifactId>audit-config</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>io.undertow</groupId> | ||
| <artifactId>undertow-core</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-databind</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.slf4j</groupId> | ||
| <artifactId>slf4j-api</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>commons-codec</groupId> | ||
| <artifactId>commons-codec</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.owasp.encoder</groupId> | ||
| <artifactId>encoder</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.bitbucket.b_c</groupId> | ||
| <artifactId>jose4j</artifactId> | ||
| <version>${version.jose4j}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.networknt</groupId> | ||
| <artifactId>client</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.networknt</groupId> | ||
| <artifactId>correlation</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>ch.qos.logback</groupId> | ||
| <artifactId>logback-classic</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>junit</groupId> | ||
| <artifactId>junit</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.mockito</groupId> | ||
| <artifactId>mockito-core</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.networknt</groupId> | ||
| <artifactId>mask</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.powermock</groupId> | ||
| <artifactId>powermock-api-mockito2</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.powermock</groupId> | ||
| <artifactId>powermock-module-junit4</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.networknt</groupId> | ||
| <artifactId>body</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| </dependencies> | ||
| </project> |
Sorry, the diff of this file is not supported yet