diff options
Diffstat (limited to 'reference/logging-library')
-rw-r--r-- | reference/logging-library/.classpath | 15 | ||||
-rw-r--r-- | reference/logging-library/pom.xml | 17 |
2 files changed, 24 insertions, 8 deletions
diff --git a/reference/logging-library/.classpath b/reference/logging-library/.classpath index 3304b94..7a80cdf 100644 --- a/reference/logging-library/.classpath +++ b/reference/logging-library/.classpath @@ -1,6 +1,11 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> - <classpathentry kind="src" path="src/main/java"/> + <classpathentry kind="src" output="target/classes" path="src/main/java"> + <attributes> + <attribute name="optional" value="true"/> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> <classpathentry exported="true" kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> <attributes> <attribute name="maven.pomderived" value="true"/> @@ -9,7 +14,13 @@ </classpathentry> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"> <attributes> - <attribute name="owner.project.facets" value="java"/> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> + <classpathentry kind="src" output="target/test-classes" path="src/test/java"> + <attributes> + <attribute name="optional" value="true"/> + <attribute name="maven.pomderived" value="true"/> </attributes> </classpathentry> <classpathentry kind="output" path="target/classes"/> diff --git a/reference/logging-library/pom.xml b/reference/logging-library/pom.xml index 547ff43..a54460d 100644 --- a/reference/logging-library/pom.xml +++ b/reference/logging-library/pom.xml @@ -1,19 +1,24 @@ <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> + <!-- parent> <groupId>org.onap.logging-analytics</groupId> <artifactId>logging-reference</artifactId> <version>1.2.2-SNAPSHOT</version> - </parent> - + </parent--> + <parent> + <groupId>org.onap.oparent</groupId> + <artifactId>oparent</artifactId> + <version>1.2.1</version> + </parent> + <groupId>org.onap.logging-analytics</groupId> <artifactId>logging-library</artifactId> + <version>1.2.2-SNAPSHOT</version> <packaging>jar</packaging> <name>logging-library</name> <properties> <spring.version>4.3.6.RELEASE</spring.version> - <logback.version>1.2.3</logback.version> - <onap.version>1.2.2-SNAPSHOT</onap.version> + <logback.version>1.2.3</logback.version> </properties> <build> @@ -76,7 +81,7 @@ <dependency> <groupId>org.onap.logging-analytics</groupId> <artifactId>logging-slf4j</artifactId> - <version>${onap.version}</version> + <version>1.2.2-SNAPSHOT</version> </dependency> <dependency> <groupId>org.springframework</groupId> |