greenbird-mule-access-log
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.greenbird.mule</groupId> <artifactId>greenbird-mule-access-log</artifactId> <version>4.0.0</version> </dependency>
<!-- ~ Copyright 2013 greenbird Integration Technology ~ ~ 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="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <properties> <greenbird-mule-test-tools.version>2.0.0</greenbird-mule-test-tools.version> </properties> <parent> <groupId>com.greenbird</groupId> <artifactId>greenbird-os-parent</artifactId> <version>2.0.0</version> <relativePath /> </parent> <name>greenbird Mule access log library</name> <description>Library that enables standard access logging from Mule HTTP inbound endpoints.</description> <url>https://github.com/greenbird/mule-access-log</url> <groupId>com.greenbird.mule</groupId> <artifactId>greenbird-mule-access-log</artifactId> <version>4.0.0</version> <packaging>jar</packaging> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:greenbird/mule-access-log.git</connection> <developerConnection>scm:git:git@github.com:greenbird/mule-access-log.git</developerConnection> <url>git@github.com:greenbird/mule-access-log.git</url> <tag>r4.0.0</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/greenbird/mule-access-log/issues</url> </issueManagement> <ciManagement> <system>Jenkins</system> <url>https://build.greenbird.com/job/mule-access-log</url> </ciManagement> <developers> <developer> <name>Christian Nedregård</name> <email>christian.nedregaard@greenbird.com</email> </developer> <developer> <name>Magnus Holm</name> <email>magnus.holm@greenbird.com</email> </developer> </developers> <dependencies> <dependency> <groupId>org.mule</groupId> <artifactId>mule-core</artifactId> </dependency> <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-spring-config</artifactId> </dependency> <dependency> <groupId>org.mule.transports</groupId> <artifactId>mule-transport-http</artifactId> </dependency> <dependency> <groupId>org.mule.transports</groupId> <artifactId>mule-transport-tcp</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-core</artifactId> <scope>provided</scope> </dependency> <!-- for testing --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.greenbird.mule</groupId> <artifactId>greenbird-mule-test-tools</artifactId> <version>${greenbird-mule-test-tools.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-spring-security</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mule.transports</groupId> <artifactId>mule-transport-vm</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mule.tests</groupId> <artifactId>mule-tests-functional</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${log4j.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <configuration> <check> <regexes> <!-- null-checking, length-checking, type-checking of ObjectMessage --> <regex> <pattern>com.greenbird.mule.http.log.converter.AbstractAccessLogConverter</pattern> <branchRate>80</branchRate> <lineRate>90</lineRate> </regex> </regexes> </check> </configuration> </plugin> </plugins> </build> </project>