logging-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.cisco.oss.foundation</groupId>
<artifactId>logging-api</artifactId>
<version>1.2.1-3</version>
</dependency><?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
~ Copyright 2015 Cisco Systems, 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="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">
<properties>
<foundation-common-base-version>1.0.1-5</foundation-common-base-version>
<slf4j-version>1.7.21</slf4j-version>
<!--<javaVersion>1.6</javaVersion>-->
</properties>
<parent>
<groupId>com.cisco.oss.foundation</groupId>
<artifactId>foundation-common-base</artifactId>
<version>1.0.1-8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.cisco.oss.foundation</groupId>
<artifactId>logging-api</artifactId>
<name>logging-api</name>
<version>1.2.1-3</version>
<description>This project is the logging api library in the cisco vss foundation runtime</description>
<url>https://github.com/foundation-runtime/logging/tree/master/logging-api</url>
<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>
<issueManagement>
<system>Github
</system>
<url>{URL in JIRA or Product name in CQ}</url>
</issueManagement>
<mailingLists>
<mailingList />
</mailingLists>
<developers>
<developer>
<id>Yair Ogen</id>
<name>Yair Ogen</name>
<email>yaogen@cisco.com</email>
<organization>Cisco</organization>
<organizationUrl>http://www.cisco.com</organizationUrl>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:foundation-runtime/logging.git</connection>
<developerConnection>scm:git:git@github.com:foundation-runtime/logging.git</developerConnection>
<url>https://github.com/foundation-runtime/logging.git</url>
<tag>logging-api-1.2.1-3</tag>
</scm>
<organization>
<name>Cisco</name>
<url>http://www.cisco.com</url>
</organization>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<configuration>
<archive>
<index>true</index>
<manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.21</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom2</artifactId>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-version}</version>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.8</version>
</dependency>
<dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>1.0-rc2</version>
</dependency>
<dependency>
<groupId>com.squareup</groupId>
<artifactId>javawriter</artifactId>
<version>2.5.1</version>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>1.10</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>jaxrs-api</artifactId>
<version>3.0.12.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>4.2.0.RELEASE</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.cisco.oss.foundation</groupId>
<artifactId>configuration-api</artifactId>
<version>1.1.0-1</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>