diff options
Diffstat (limited to 'reference/logging-library')
-rw-r--r-- | reference/logging-library/.gitignore | 2 | ||||
-rw-r--r-- | reference/logging-library/pom.xml | 66 | ||||
-rw-r--r-- | reference/logging-library/src/main/java/org/onap/logging/LoggingReference.java | 26 |
3 files changed, 94 insertions, 0 deletions
diff --git a/reference/logging-library/.gitignore b/reference/logging-library/.gitignore new file mode 100644 index 0000000..99d2bb1 --- /dev/null +++ b/reference/logging-library/.gitignore @@ -0,0 +1,2 @@ +/target/ +/build/ diff --git a/reference/logging-library/pom.xml b/reference/logging-library/pom.xml new file mode 100644 index 0000000..2bd9f6d --- /dev/null +++ b/reference/logging-library/pom.xml @@ -0,0 +1,66 @@ +<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/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.onap.logging</groupId> + <artifactId>logging-reference</artifactId> + <version>1.2.0-SNAPSHOT</version> + </parent> + + <artifactId>logging-library</artifactId> + <packaging>jar</packaging> + <version>1.2.0-SNAPSHOT</version> + <name>logging-library</name> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.2</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + </plugins> + <pluginManagement> + <plugins> + <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId> + org.apache.maven.plugins + </groupId> + <artifactId> + maven-compiler-plugin + </artifactId> + <versionRange> + [3.2,) + </versionRange> + <goals> + <goal>testCompile</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + <properties> + </properties> + <dependencies> + </dependencies> +</project> diff --git a/reference/logging-library/src/main/java/org/onap/logging/LoggingReference.java b/reference/logging-library/src/main/java/org/onap/logging/LoggingReference.java new file mode 100644 index 0000000..ccca682 --- /dev/null +++ b/reference/logging-library/src/main/java/org/onap/logging/LoggingReference.java @@ -0,0 +1,26 @@ +/** + * ============LICENSE_START======================================================= + * org.onap.logging + * ================================================================================ + * Copyright © 2018 Amdocs + * All rights reserved. + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + */ + +package org.onap.logging; + +public class LoggingReference { + +} |