Improve the manifest and documentation a bit.
Change-Id: Ia8585c9d9fdc415737023763260df1aee4e6398f
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opendaylight.yangtools</groupId>
- <artifactId>bundle-parent</artifactId>
+ <artifactId>bnd-parent</artifactId>
<version>14.0.8-SNAPSHOT</version>
- <relativePath>../../bundle-parent</relativePath>
+ <relativePath>../../bnd-parent</relativePath>
</parent>
<artifactId>yang-data-codec-gson</artifactId>
- <packaging>bundle</packaging>
+ <packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>JSON (RFC7951) encoding for NormalizedNodes</description>
<properties>
- <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
+ <!-- FIXME: fix these up and set <maven.javadoc.failOnWarnings>true</maven.javadoc.failOnWarnings> -->
<doclint>all,-missing</doclint>
</properties>
* terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*/
+/**
+ * Utilities for parsing JSON as YANG-modeled data and writing the same.
+ */
module org.opendaylight.yangtools.yang.data.codec.gson {
exports org.opendaylight.yangtools.yang.data.codec.gson;
requires static org.checkerframework.checker.qual;
requires static com.github.spotbugs.annotations;
requires static org.eclipse.jdt.annotation;
+ requires static org.osgi.annotation.bundle;
}
--- /dev/null
+/*
+ * Copyright (c) 2024 PANTHEON.tech, s.r.o. and others. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * Utilities for parsing JSON as YANG-modeled data and writing the same.
+ */
+@org.osgi.annotation.bundle.Export
+package org.opendaylight.yangtools.yang.data.codec.gson;
\ No newline at end of file